mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
f9cb5c5c56
Ironbar is a new GTK-based bar written in Rust. It offers substantial improvements over waybar, including a proper application launcher.
31 lines
536 B
Nix
31 lines
536 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)
|
|
./xcursor.nix
|
|
./xdg-user-dirs.nix
|
|
./xresources.nix
|
|
./zathura.nix
|
|
];
|
|
}
|