mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
hosts/ni: update module formatting
This commit is contained in:
parent
940dd25002
commit
3f286fbc7a
@ -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!
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user