diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-20 21:22:38 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-20 21:22:38 +0200 |
commit | cb4436e80bfbe97cf3cd7bf1a5e1e4d24db92065 (patch) | |
tree | f7d50579a1bd90a46d71fe3613870211c6eae08f /modules | |
parent | modules/{i3bar-river,i3status-rust}: Init (diff) | |
download | nixos-config-cb4436e80bfbe97cf3cd7bf1a5e1e4d24db92065.zip |
modules/common: Switch from `yambar` to `i3bar-river`
Currently, the config is not yet adapted for my laptop, which is why the old yambar module is still left in-tree.
Diffstat (limited to '')
-rw-r--r-- | modules/common/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/common/default.nix b/modules/common/default.nix index 504782f3..aadb22bd 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -178,6 +178,9 @@ }; programs = { + i3bar-river.enable = true; + i3status-rust.enable = true; + nvim = { enable = true; shell = pkgs.zsh; @@ -256,8 +259,8 @@ pointer-12951-6505-ZSA_Technology_Labs_Moonlander_Mark_I = [["pointer-accel" "0"] ["accel-profile" "none"]]; }; backgroundStart = [ + # TODO(@bpeetz): Move these to systemd units/their own modules <2025-05-18> pkgs.gammastep - pkgs.yambar pkgs.mako ["${lib.getExe pkgs.swaybg}" "--image" "${./abstract-nord.png}"] @@ -283,7 +286,7 @@ projects = builtins.fromJSON (builtins.readFile ./projects.json); }; nix-index.enable = true; - yambar.enable = true; + yambar.enable = false; yt.enable = true; zathura.enable = true; zsh.enable = true; |