nix/desktops/common.nix

17 lines
282 B
Nix
Raw Normal View History

2023-07-05 14:58:58 +02:00
# If a GUI is enabled, install GUI apps:
{ lib, pkgs, config, ... }: {
users.users.albert = {
packages = with pkgs; [
firefox
bitwarden
steam
lutris
vlc
];
};
2023-07-06 05:02:45 +02:00
imports = [
# Software configurations
2023-07-06 05:03:44 +02:00
../software/firefox.nix
2023-07-06 05:02:45 +02:00
];
2023-07-05 14:58:58 +02:00
}