diff --git a/nixos/features/steam.nix b/nixos/features/steam.nix index 417069f..006456c 100644 --- a/nixos/features/steam.nix +++ b/nixos/features/steam.nix @@ -1,7 +1,7 @@ -{ pkgs, ... }: { +{ pkgs, lib, ... }: { programs.steam = { enable = true; - package = pkgs.steam-small; + package = lib.mkDefault pkgs.steam; remotePlay.openFirewall = true; }; diff --git a/nixos/hosts/unicorn/hardware-configuration.nix b/nixos/hosts/unicorn/hardware-configuration.nix index 6a2637f..806649f 100644 --- a/nixos/hosts/unicorn/hardware-configuration.nix +++ b/nixos/hosts/unicorn/hardware-configuration.nix @@ -14,19 +14,20 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/cf5922bd-3910-4f1b-85b7-422f7c55c856"; + { device = "/dev/disk/by-uuid/4a43818d-9937-445b-82e2-b8b799ed0685"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/2F38-02AD"; + { device = "/dev/disk/by-uuid/8F8D-AE4C"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; - swapDevices = - [ { device = "/dev/disk/by-uuid/ac8abccd-63c7-4e62-9f8b-7baafe85dfb9"; } - ]; + swapDevices = [{ + device = "/swapfile"; + size = 16 * 1024; + }]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's