my system configurations ^-^

feat(hm): move helix and catppuccin to shared

42willow.github.io 5d57147e 182f0e09

verified
+17 -4
-1
modules/darwin/homebrew.nix
··· 21 21 "bun" 22 22 "gh" 23 23 "gitui" 24 - "helix" 25 24 "just" 26 25 "libqalculate" 27 26 "mpd"
-1
modules/nixos/home/programs/tui/default.nix
··· 11 11 ./bat.nix # core 12 12 ./btop.nix # core 13 13 ./gitui.nix # dev 14 - ./helix.nix # dev 15 14 # ./lazygit.nix # dev 16 15 ./ncmpcpp.nix # music 17 16 ./yazi.nix # files
modules/nixos/home/programs/tui/helix.nix modules/shared/home/programs/tui/helix.nix
+5 -1
modules/nixos/home/themes/catppuccin.nix modules/shared/home/themes/catppuccin.nix
··· 12 12 13 13 config = lib.mkIf cfg.enable { 14 14 catppuccin = { 15 - inherit (osConfig.catppuccin) flavor accent; 15 + # inherit (osConfig.catppuccin) flavor accent; 16 + # https://github.com/catppuccin/nix/pull/477 17 + flavor = "macchiato"; 18 + accent = "pink"; 19 + 16 20 enable = true; 17 21 zathura.enable = false; 18 22 };
-1
modules/nixos/home/themes/default.nix
··· 1 1 { 2 2 imports = [ 3 - ./catppuccin.nix 4 3 ./gtk.nix 5 4 ./qt.nix 6 5 ./stylix.nix
+1
modules/shared/home/home.nix
··· 3 3 in { 4 4 imports = [ 5 5 ./programs 6 + ./themes 6 7 ]; 7 8 8 9 programs.home-manager.enable = true;
+1
modules/shared/home/programs/default.nix
··· 1 1 { 2 2 imports = [ 3 3 ./cli 4 + ./tui 4 5 ]; 5 6 }
+5
modules/shared/home/programs/tui/default.nix
··· 1 + { 2 + imports = [ 3 + ./helix.nix 4 + ]; 5 + }
+5
modules/shared/home/themes/default.nix
··· 1 + { 2 + imports = [ 3 + ./catppuccin.nix 4 + ]; 5 + }