fix(bbsteamie): adjust to latest automount fixes
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-10-08 15:25:55 -04:00
parent 1fc9ba5f35
commit 0a5eb4ffe5
2 changed files with 1 additions and 8 deletions

View file

@ -48,11 +48,6 @@
fsType = "vfat"; fsType = "vfat";
options = ["fmask=0022" "dmask=0022"]; options = ["fmask=0022" "dmask=0022"];
}; };
"/run/media/mariah/SDCARD" = {
device = "/dev/disk/by-label/SDCARD";
fsType = "ext4";
};
}; };
swapDevices = [ swapDevices = [

View file

@ -7,8 +7,6 @@ defaultSession: {
}: { }: {
config = let config = let
inherit (config.vars) mainUser; inherit (config.vars) mainUser;
cfg = config.programs.steam;
in { in {
# Normal Steam Stuff # Normal Steam Stuff
programs.steam = { programs.steam = {
@ -33,7 +31,7 @@ defaultSession: {
lib.makeSearchPathOutput lib.makeSearchPathOutput
"steamcompattool" "steamcompattool"
"" ""
cfg.extraCompatPackages; config.programs.steam.extraCompatPackages;
}; };
desktopSession = defaultSession; desktopSession = defaultSession;