My NixOS configuration (mirror)

chore: added default.nix files to home-manager folders

+20 -11
+12
home/configs/default.nix
··· 1 + { 2 + imports = [ 3 + ./bat.nix 4 + ./btop.nix 5 + ./direnv.nix 6 + ./fuzzel.nix 7 + ./garbage.nix 8 + ./git.nix 9 + ./ssh.nix 10 + ./vicinae.nix 11 + ]; 12 + }
+2 -11
home/default.nix
··· 58 58 59 59 home-manager.users.matthew_hre = { 60 60 imports = [ 61 - ./configs/bat.nix 62 - ./configs/btop.nix 63 - ./configs/direnv.nix 64 - ./configs/fastfetch 65 - ./configs/fuzzel.nix 66 - ./configs/garbage.nix 67 - ./configs/git.nix 68 - ./configs/ssh.nix 69 - ./configs/vicinae.nix 70 - ./editors/helix 71 - ./editors/nvf 61 + ./configs 62 + ./editors 72 63 ./shell 73 64 ./wayland 74 65 ];
+6
home/editors/default.nix
··· 1 + { 2 + imports = [ 3 + ./helix 4 + ./nvf 5 + ]; 6 + }