diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-06 00:18:52 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-06 00:18:52 +0200 |
commit | 90b72c66dd5c1b98721524084feb352f0c0d2b05 (patch) | |
tree | 7a3e1229f2787eeb6a9c61339bf766eaea6eb889 /hosts | |
parent | fmt (diff) | |
download | nixos-config-90b72c66dd5c1b98721524084feb352f0c0d2b05.tar.gz nixos-config-90b72c66dd5c1b98721524084feb352f0c0d2b05.tar.bz2 nixos-config-90b72c66dd5c1b98721524084feb352f0c0d2b05.zip |
Luna+VM: Add xmonadctl and xmonad sxhkd config
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/luna/home.nix | 3 | ||||
-rw-r--r-- | hosts/phobos/home.nix | 2 | ||||
-rw-r--r-- | hosts/vm/home.nix | 7 |
3 files changed, 8 insertions, 4 deletions
diff --git a/hosts/luna/home.nix b/hosts/luna/home.nix index cb8f5e9..1f2b664 100644 --- a/hosts/luna/home.nix +++ b/hosts/luna/home.nix @@ -16,6 +16,7 @@ in kindlegen manga-cli mov-cli + xmonadctl ]); programs.firefox.profiles.default.settings = { @@ -47,7 +48,7 @@ in ''; "sxhkd/sxhkdrc".text = - builtins.readFile (dotfiles + "/sxhkd/dwm") + + builtins.readFile (dotfiles + "/sxhkd/xmonad") + builtins.readFile (dotfiles + "/sxhkd/base") + '' diff --git a/hosts/phobos/home.nix b/hosts/phobos/home.nix index f235f93..9913083 100644 --- a/hosts/phobos/home.nix +++ b/hosts/phobos/home.nix @@ -16,7 +16,7 @@ in kindlegen manga-cli mov-cli - xmonadctl + xmonadctl #in extraPackages ]); programs.firefox.profiles.default.settings = { diff --git a/hosts/vm/home.nix b/hosts/vm/home.nix index a409b37..6f442ce 100644 --- a/hosts/vm/home.nix +++ b/hosts/vm/home.nix @@ -6,7 +6,10 @@ in home.packages = with pkgs; [ jetbrains.idea-community qtcreator - ]; + ] ++ + (with pkgs.custom; [ + xmonadctl + ]); xdg.configFile = { "dwmbar/config".text = '' @@ -33,7 +36,7 @@ in ''; "sxhkd/sxhkdrc".text = - builtins.readFile (dotfiles + "/sxhkd/dwm") + + builtins.readFile (dotfiles + "/sxhkd/xmonad") + builtins.readFile (dotfiles + "/sxhkd/base") + '' |