Skip to content

Commit

Permalink
hosts/ni: update module formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
foo-dogsquared committed Dec 13, 2023
1 parent 940dd25 commit 3f286fb
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions hosts/ni/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,17 @@

hosts.ni = {
hardware.qol.enable = true;
networking.enable = true;
networking.setup = "networkmanager";
networking.wireguard.enable = true;
setups.desktop.enable = true;
setups.development.enable = true;
setups.music.enable = true;
setups.gaming.enable = true;
networking = {
enable = true;
setup = "networkmanager";
wireguard.enable = true;
};
setups = {
desktop.enable = true;
development.enable = true;
music.enable = true;
gaming.enable = true;
};
};

disko.devices = import ./disko.nix {
Expand Down Expand Up @@ -62,6 +66,8 @@
# Basically, the most basic nixpkgs configuration.
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!
}

0 comments on commit 3f286fb

Please sign in to comment.