From 0a5eb4ffe5bb58ed46b0b5d81388c6bf7e4cc620 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Tue, 8 Oct 2024 15:25:55 -0400 Subject: [PATCH] fix(bbsteamie): adjust to latest automount fixes --- devices/bbsteamie/hardware-configuration.nix | 5 ----- devices/bbsteamie/modules/desktop/steam.nix | 4 +--- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/devices/bbsteamie/hardware-configuration.nix b/devices/bbsteamie/hardware-configuration.nix index c1dd62ee..2674c6da 100644 --- a/devices/bbsteamie/hardware-configuration.nix +++ b/devices/bbsteamie/hardware-configuration.nix @@ -48,11 +48,6 @@ fsType = "vfat"; options = ["fmask=0022" "dmask=0022"]; }; - - "/run/media/mariah/SDCARD" = { - device = "/dev/disk/by-label/SDCARD"; - fsType = "ext4"; - }; }; swapDevices = [ diff --git a/devices/bbsteamie/modules/desktop/steam.nix b/devices/bbsteamie/modules/desktop/steam.nix index cc4483ad..d82182a7 100644 --- a/devices/bbsteamie/modules/desktop/steam.nix +++ b/devices/bbsteamie/modules/desktop/steam.nix @@ -7,8 +7,6 @@ defaultSession: { }: { config = let inherit (config.vars) mainUser; - - cfg = config.programs.steam; in { # Normal Steam Stuff programs.steam = { @@ -33,7 +31,7 @@ defaultSession: { lib.makeSearchPathOutput "steamcompattool" "" - cfg.extraCompatPackages; + config.programs.steam.extraCompatPackages; }; desktopSession = defaultSession;