mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
fd18dbd99b
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.
32 lines
553 B
Nix
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
|
|
];
|
|
}
|