Only import one file for home-manager

This commit is contained in:
Donovan Glover 2023-05-16 17:22:00 -04:00
parent a9703aad9a
commit b6f16a9877
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 22 additions and 2 deletions

View File

@ -15,8 +15,7 @@
modules = [ modules = [
./configuration.nix ./configuration.nix
./home.nix ./home.nix
./home-manager/fcitx5 ./home-manager
./home-manager/rofi
hyprland.nixosModules.default hyprland.nixosModules.default
{ programs.hyprland.enable = true; } { programs.hyprland.enable = true; }
stylix.nixosModules.stylix stylix.nixosModules.stylix

21
home-manager/default.nix Normal file
View File

@ -0,0 +1,21 @@
{
imports = [
./dunst
./editorconfig
./fcitx5
./feh
./git
./gtk
./kitty
./mpv
./ncmpcpp
./qutebrowser
./ranger
./rofi
./swaylock
./thunar
./tig
./waybar
./zathura
];
}