aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-19 09:18:59 +0100
committerene <ene@sils.li>2023-03-19 09:18:59 +0100
commite53fdea42b719b4065f55bfb462ed2f7db0f112b (patch)
tree9eb6fdf3833455c9d65e4eeb12dd20d9404f5c5d
parentFeat(hm/conf/dconf): Add dconf (diff)
downloadnixos-config-e53fdea42b719b4065f55bfb462ed2f7db0f112b.zip
Style(format): Alejandra
Diffstat (limited to '')
-rw-r--r--flake/nixosConfigurations/default.nix8
-rw-r--r--home-manager/config/lf/default.nix4
-rw-r--r--hosts/lahmu/hardware/gpu.nix16
-rw-r--r--system/default.nix8
-rw-r--r--system/graphics/default.nix1
-rw-r--r--system/impermanence/default.nix2
-rw-r--r--system/locale/default.nix2
-rw-r--r--system/services/dconf/default.nix1
8 files changed, 22 insertions, 20 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix
index 6159d1b9..2a5ce883 100644
--- a/flake/nixosConfigurations/default.nix
+++ b/flake/nixosConfigurations/default.nix
@@ -16,26 +16,26 @@
pkgs
sysLib
# extra information
-
+
system
;
inherit
(inputs)
# bins
-
+
yambar_cpu
yambar_memory
strip_js_comments
river_init_lesser
grades
# external deps
-
+
user_js
neovim_config
snap-sync
# modules
-
+
impermanence
;
};
diff --git a/home-manager/config/lf/default.nix b/home-manager/config/lf/default.nix
index 809073c4..3991ba19 100644
--- a/home-manager/config/lf/default.nix
+++ b/home-manager/config/lf/default.nix
@@ -55,7 +55,7 @@ in {
xdg.configFile."lf/icons".source = ./icons;
xdg.configFile."lf/colors".source = ./colors;
-# TODO add the systemd tempfile option here
+ # TODO add the systemd tempfile option here
programs.lf = {
enable = true;
@@ -209,7 +209,7 @@ in {
gnutar
unzip
# TODO this is unfree! unrar
-
+
p7zip
;
};
diff --git a/hosts/lahmu/hardware/gpu.nix b/hosts/lahmu/hardware/gpu.nix
index 9e6ab9e4..62bde0d2 100644
--- a/hosts/lahmu/hardware/gpu.nix
+++ b/hosts/lahmu/hardware/gpu.nix
@@ -4,12 +4,12 @@
lib,
...
}: {
-# hardware.opengl.extraPackages = with pkgs; [
-# rocm-opencl-icd # open-cl
-# amdvlk # or directly through mesa
-# amd-media-driver # libva
-# ];
-#
-# # Force radv, TODO is this logical?
-# environment.variables.AMD_VULKAN_ICD = "RADV";
+ # hardware.opengl.extraPackages = with pkgs; [
+ # rocm-opencl-icd # open-cl
+ # amdvlk # or directly through mesa
+ # amd-media-driver # libva
+ # ];
+ #
+ # # Force radv, TODO is this logical?
+ # environment.variables.AMD_VULKAN_ICD = "RADV";
}
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,