nix/desktops/common.nix
2023-08-21 18:22:48 +09:00

20 lines
No EOL
361 B
Nix

# If a GUI is enabled, install GUI apps:
{ lib, pkgs, config, ... }: {
users.users.albert = {
packages = with pkgs; [
firefox
thunderbird
bitwarden
steam
lutris
vlc
];
};
imports = [
# Software configurations
../software/firefox.nix
../software/weechat.nix
#../software/thunderbird.nix
];
}