ran statix linter
This commit is contained in:
parent
11603852f4
commit
0b1309dd0f
16 changed files with 376 additions and 329 deletions
|
@ -8,19 +8,21 @@ in
|
|||
../../overlays/vscodium.nix
|
||||
];
|
||||
|
||||
programs.bash.shellAliases = lib.mkIf cfg.isFullUser ({
|
||||
code = "codium";
|
||||
});
|
||||
programs = {
|
||||
bash.shellAliases = lib.mkIf cfg.isFullUser {
|
||||
code = "codium";
|
||||
};
|
||||
|
||||
programs.steam = lib.mkIf cfg.isFullUser ({
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||
});
|
||||
steam = lib.mkIf cfg.isFullUser {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||||
};
|
||||
|
||||
programs.noisetorch.enable = cfg.isFullUser;
|
||||
noisetorch.enable = cfg.isFullUser;
|
||||
|
||||
programs.adb.enable = cfg.isFullUser;
|
||||
adb.enable = cfg.isFullUser;
|
||||
};
|
||||
|
||||
users.users.leyla.packages = lib.mkIf (cfg.isFullUser || cfg.isThinUser) (
|
||||
lib.mkMerge [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue