nixos-config/roles/gui.nix

55 lines
922 B
Nix
Raw Normal View History

{
lib,
pkgs,
config,
username,
home-manager,
...
}:
with lib;
let
cfg = config.liv.gui;
in
{
options.liv.gui = {
enable = mkEnableOption "Enable GUI workflow";
};
config = mkIf cfg.enable {
services = {
gvfs.enable = true;
gnome.gnome-keyring.enable = true;
dbus.enable = true;
};
2025-08-01 13:18:32 +02:00
home-manager.users.${username}.home.packages = with pkgs; [
element-desktop
gajim
signal-desktop
anki-bin
obs-studio
wdisplays
librewolf # main
ungoogled-chromium # for things that don't work with librewolf
nsxiv
imv
libreoffice
xfce.thunar
spotify
spotify-player
thunderbird
lxqt.pavucontrol-qt
mpv
plasma5Packages.kdeconnect-kde
winbox
# onthespot-overlay
# Gaming
lunar-client
2025-08-02 00:40:47 +02:00
# Not GUI but specific to GUI usage
sshuttle
2025-08-01 13:18:32 +02:00
];
};
}