nix-config/home/default.nix
Donovan Glover fd18dbd99b
meta: Remove waycorner
For simplicity, waycorner will not be used as an option to execute
commands. This should prevent any unexpected surprises and we no longer
have to deal with waycorner getting hidden by other windows.
2023-06-25 10:54:46 -04:00

32 lines
553 B
Nix

{ lib, config, ... }:
{
home-manager.sharedModules = [
./dunst.nix
./fcitx.nix
./fish.nix
./git.nix
./gpg.nix
./gtk.nix
./htop.nix
./hyprland.nix
./joshuto.nix
./kitty.nix
./librewolf.nix
./mime-apps.nix
./mpv.nix
./ncmpcpp.nix
./neovim.nix
./qutebrowser.nix
./rofi.nix
./swaylock.nix
./thunar.nix
(lib.mkIf (config.programs.hyprland.enable == true) ./udiskie.nix)
./waybar.nix
./xcursor.nix
./xdg-user-dirs.nix
./xresources.nix
./zathura.nix
];
}