diff options
author | sefidel <contact@sefidel.net> | 2022-02-13 12:52:49 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-13 12:52:49 +0900 |
commit | e2b164807b208cb9c099c0b024646fcdde96d3d9 (patch) | |
tree | 0c1d1cd3d829e053459da4df5b6f302e63d64b88 /home | |
parent | d6b6cad9cc2976230a575d38c798311c330ae2dc (diff) | |
download | nixrc-e2b164807b208cb9c099c0b024646fcdde96d3d9.tar.gz nixrc-e2b164807b208cb9c099c0b024646fcdde96d3d9.zip |
feat(home/base): use static grey for bg
Diffstat (limited to 'home')
-rw-r--r-- | home/modules/misc/neotheme/default.nix | 7 | ||||
-rw-r--r-- | home/profiles/base/config/sway.nix | 2 | ||||
-rw-r--r-- | home/profiles/base/default.nix | 2 |
3 files changed, 1 insertions, 10 deletions
diff --git a/home/modules/misc/neotheme/default.nix b/home/modules/misc/neotheme/default.nix index 8db17d4..01c05bb 100644 --- a/home/modules/misc/neotheme/default.nix +++ b/home/modules/misc/neotheme/default.nix @@ -51,12 +51,5 @@ in "bright6" "bright7" ]); - - wallpaper = mkOption { - type = types.str; - default = ""; - description = "path for wallpaper image file"; - example = "/weird/dir/wallpaper.png"; - }; }; } diff --git a/home/profiles/base/config/sway.nix b/home/profiles/base/config/sway.nix index e9c7c72..9d971b8 100644 --- a/home/profiles/base/config/sway.nix +++ b/home/profiles/base/config/sway.nix @@ -187,7 +187,7 @@ with neotheme.colors; client.focused_inactive $muted $muted $color0 $color5 client.unfocused $muted $muted $color7 $color5 client.urgent $color10 $color10 $color0 $color5 - output "*" bg ${neotheme.wallpaper} fill + output "*" bg #545454 solid_color output "*" scale 1 output "*" scale_filter nearest diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index 5fcfd3d..fd34090 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -60,8 +60,6 @@ in bright6 = "8ec0be"; bright7 = "e4e4db"; }; - - wallpaper = "${inputs.wallpapers}/nixos/nix-glow-fg-d4ae80.png"; }; home.keyboard.layout = "us"; |