hosts/ni: update module formatting

This commit is contained in:
Gabriel Arazas 2023-12-13 18:16:40 +08:00
parent 940dd25002
commit 3f286fbc7a
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -27,13 +27,17 @@
hosts.ni = { hosts.ni = {
hardware.qol.enable = true; hardware.qol.enable = true;
networking.enable = true; networking = {
networking.setup = "networkmanager"; enable = true;
networking.wireguard.enable = true; setup = "networkmanager";
setups.desktop.enable = true; wireguard.enable = true;
setups.development.enable = true; };
setups.music.enable = true; setups = {
setups.gaming.enable = true; desktop.enable = true;
development.enable = true;
music.enable = true;
gaming.enable = true;
};
}; };
disko.devices = import ./disko.nix { disko.devices = import ./disko.nix {
@ -62,6 +66,8 @@
# Basically, the most basic nixpkgs configuration. # Basically, the most basic nixpkgs configuration.
environment.variables.NIXPKGS_CONFIG = lib.mkForce ./config/nixpkgs/config.nix; environment.variables.NIXPKGS_CONFIG = lib.mkForce ./config/nixpkgs/config.nix;
# Some more experimentals for Nix.
nix.settings.experimental-features = [ "auto-allocate-uids" "configurable-impure-env" ];
system.stateVersion = "24.05"; # Yes! I read the comment! system.stateVersion = "24.05"; # Yes! I read the comment!
} }