mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
51 lines
864 B
Nix
51 lines
864 B
Nix
{
|
|
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;
|
|
};
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|