mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
209fb4d9ca
The new lines are unfortunately necessary since waybar uses GTK CSS, and GTK CSS doesn't support modern CSS features like vertical text.
35 lines
626 B
Nix
35 lines
626 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
|
|
./hyprland-autoname-workspaces.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
|
|
];
|
|
}
|