From 60172b1e19e6f2b035f82e4c55a40c1fa4216059 Mon Sep 17 00:00:00 2001 From: fruchti Date: Fri, 3 Mar 2023 15:19:58 +0100 Subject: [PATCH] Rupert: Move everything into hosts/ file configuration.nix is now just imports. --- hosts/Rupert.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index 04f7885..3238f0b 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -17,6 +17,11 @@ in # ./open-pgsql.nix ]; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + networking.hostName = "Rupert"; + users.users = { waldi = { isNormalUser = true; @@ -110,4 +115,12 @@ in services.udev.extraRules = '' SUBSYSTEM=="video4linux", ATTRS{idProduct}=="0002", ATTRS{idVendor}=="1d6b", SYMLINK+="hdmi_capture" ''; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "22.05"; # Did you read the comment? }