mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
8a028efe50
Now that waybar supports fullscreen indicators, I am no longer interested in maintaining a list of application names. Although this was cool, it doesn't scale and adds complexity.
34 lines
587 B
Nix
34 lines
587 B
Nix
{ lib, config, ... }:
|
|
|
|
{
|
|
home-manager.sharedModules = [
|
|
./dunst.nix
|
|
./fcitx.nix
|
|
./feh.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
|
|
./waycorner.nix
|
|
./xcursor.nix
|
|
./xdg-user-dirs.nix
|
|
./xresources.nix
|
|
./zathura.nix
|
|
];
|
|
}
|