Rupert: Move everything into hosts/ file

configuration.nix is now just imports.
This commit is contained in:
fruchti 2023-03-03 15:19:58 +01:00
parent 94859a92a3
commit 60172b1e19

View file

@ -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. Its 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?
}