17 lines
No EOL
282 B
Nix
17 lines
No EOL
282 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
|
|
];
|
|
} |