nix/desktops/common.nix

18 lines
No EOL
310 B
Nix

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