Simplify Blender import, remove Rot8, standardize fastfetch import, add Teams (ew), split up environment vars, etc
This commit is contained in:
parent
19a6abfbb6
commit
d4ca164ed3
23 changed files with 68 additions and 53 deletions
|
@ -1,18 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
config = lib.mkIf config.home.gaming.enable {
|
||||
home.packages = with pkgs; [
|
||||
heroic
|
||||
prismlauncher
|
||||
steam
|
||||
steam-run-free
|
||||
];
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [
|
||||
".config/heroic"
|
||||
".local/share/PrismLauncher"
|
||||
".local/share/Steam"
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
heroic
|
||||
prismlauncher
|
||||
steam
|
||||
steam-run-free
|
||||
];
|
||||
persistence."/persist${config.home.homeDirectory}".directories = [
|
||||
".config/heroic"
|
||||
".local/share/PrismLauncher"
|
||||
".local/share/Steam"
|
||||
];
|
||||
};
|
||||
|
||||
nixpkgs.allowUnfreePackages = [
|
||||
"steam"
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; lib.mkIf config.home.school.enable [
|
||||
freerdp
|
||||
globalprotect-openconnect
|
||||
gpauth
|
||||
remmina
|
||||
];
|
||||
home = lib.mkIf config.home.school.enable {
|
||||
packages = with pkgs; [
|
||||
freerdp
|
||||
globalprotect-openconnect
|
||||
gpauth
|
||||
remmina
|
||||
teams-for-linux
|
||||
];
|
||||
persistence."/persist${config.home.homeDirectory}".directories = [
|
||||
".config/com.yuezk.qt"
|
||||
".config/remmina"
|
||||
".config/teams-for-linux"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue