unicorn fixes
This commit is contained in:
parent
4659ddd067
commit
c5c87f75d0
2 changed files with 8 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, lib, ... }: {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
package = pkgs.steam-small;
|
||||
package = lib.mkDefault pkgs.steam;
|
||||
remotePlay.openFirewall = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue