nix/desktops/common.nix
2023-08-21 23:13:42 +09:00

19 lines
No EOL
328 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
];
}