summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/home/default.nix2
-rw-r--r--modules/home/wallpapers.nix14
-rw-r--r--modules/hosts/T430/home.nix1
-rw-r--r--modules/hosts/T495/home.nix1
4 files changed, 18 insertions, 0 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix
index 2c19b8c..a651463 100644
--- a/modules/home/default.nix
+++ b/modules/home/default.nix
@@ -12,8 +12,10 @@
./initial-home-setup.nix
./pcmanfm.nix # TODO mk name changeable & doesn't seem to work right now
./theme.nix
+ ./wallpapers.nix
];
alacritty.enable = lib.mkDefault true;
theme.mint.enable = lib.mkDefault true;
+ wallpapers.enable = lib.mkDefault false;
}
diff --git a/modules/home/wallpapers.nix b/modules/home/wallpapers.nix
new file mode 100644
index 0000000..d7e067a
--- /dev/null
+++ b/modules/home/wallpapers.nix
@@ -0,0 +1,14 @@
+{ lib, config, pkgs, ... }: {
+ options = {
+ wallpapers.enable = lib.mkEnableOption "enables all wallpapers";
+ };
+
+ config = lib.mkIf config.wallpapers.enable {
+ home.file.".local/share/wallpaper" = {
+ source = pkgs.fetchzip {
+ url = "https://tjkeller.xyz/permalinks/wallpapers.tar";
+ hash = "sha256-lhj9wUMZfd0XOrUtWY9HB64oXrS/EjsvsaJHzu4ucFg=";
+ };
+ };
+ };
+}
diff --git a/modules/hosts/T430/home.nix b/modules/hosts/T430/home.nix
index 1e5b3d1..9885a06 100644
--- a/modules/hosts/T430/home.nix
+++ b/modules/hosts/T430/home.nix
@@ -2,4 +2,5 @@
imports = [ ../../home ];
alacritty.font.size = 9;
+ wallpapers.enable = true;
}
diff --git a/modules/hosts/T495/home.nix b/modules/hosts/T495/home.nix
index cf0c956..cf86990 100644
--- a/modules/hosts/T495/home.nix
+++ b/modules/hosts/T495/home.nix
@@ -3,6 +3,7 @@
theme.mint.theme.color = "Dark-Purple";
theme.mint.icons.color = "Purple";
+ wallpapers.enable = true;
home.file.input-leap-config = {
source = ./resources/input-leap/;