diff options
author | ene <ene@sils.li> | 2023-03-19 09:18:59 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-19 09:18:59 +0100 |
commit | e53fdea42b719b4065f55bfb462ed2f7db0f112b (patch) | |
tree | 9eb6fdf3833455c9d65e4eeb12dd20d9404f5c5d /system | |
parent | Feat(hm/conf/dconf): Add dconf (diff) | |
download | nixos-config-e53fdea42b719b4065f55bfb462ed2f7db0f112b.zip |
Style(format): Alejandra
Diffstat (limited to 'system')
-rw-r--r-- | system/default.nix | 8 | ||||
-rw-r--r-- | system/graphics/default.nix | 1 | ||||
-rw-r--r-- | system/impermanence/default.nix | 2 | ||||
-rw-r--r-- | system/locale/default.nix | 2 | ||||
-rw-r--r-- | system/services/dconf/default.nix | 1 |
5 files changed, 8 insertions, 6 deletions
diff --git a/system/default.nix b/system/default.nix index 23418312..3626f222 100644 --- a/system/default.nix +++ b/system/default.nix @@ -13,8 +13,8 @@ ./services ./tempfiles ]; - # TODO does this really remove all the bloatware, nixos installs by default? - environment = { - defaultPackages = []; - }; + # TODO does this really remove all the bloatware, nixos installs by default? + environment = { + defaultPackages = []; + }; } diff --git a/system/graphics/default.nix b/system/graphics/default.nix index 65f88daa..28f958c1 100644 --- a/system/graphics/default.nix +++ b/system/graphics/default.nix @@ -15,3 +15,4 @@ }; } # vim: ts=2 + diff --git a/system/impermanence/default.nix b/system/impermanence/default.nix index f193a704..2d62dc94 100644 --- a/system/impermanence/default.nix +++ b/system/impermanence/default.nix @@ -13,7 +13,7 @@ directories = [ "/etc/nixos" "/var/log" - "/etc/NetworkManager" # this shouldn't hurt even if networkmanager isn't installed + "/etc/NetworkManager" # this shouldn't hurt even if networkmanager isn't installed # TODO this needs to be checked #"/var/lib/bluetooth" #"/var/lib/nixos" diff --git a/system/locale/default.nix b/system/locale/default.nix index 7d83866d..4d009e8e 100644 --- a/system/locale/default.nix +++ b/system/locale/default.nix @@ -11,7 +11,7 @@ i18n = { defaultLocale = "en_CA.UTF-8"; extraLocaleSettings = { - LANGUAGE="en_CA:en_US:en"; + LANGUAGE = "en_CA:en_US:en"; LC_TIME = "en_DK.UTF-8"; LC_COLLATE = "C.UTF-8"; }; diff --git a/system/services/dconf/default.nix b/system/services/dconf/default.nix index db35208e..f593ff54 100644 --- a/system/services/dconf/default.nix +++ b/system/services/dconf/default.nix @@ -1,3 +1,4 @@ +# vim: ts=2 { config, lib, |