diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-10-11 21:02:35 +0200 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-10-11 21:23:05 +0200 |
| commit | eeb53599fb7f7a6ae9543f37538d6eef69b5d81c (patch) | |
| tree | 9794865aeb3664d85e9f2c0691140eb920f9f558 /hosts/apocalypse | |
| parent | 38231218792e8cb112c229fc6b55cdcb5caae95c (diff) | |
Bunch of updates:
- Fixed not having virt-manager
- Added Steam
- Removed old ssd mounts on apocalypse
- Fixed syncthing service
- Probably some spotify stuff
Diffstat (limited to 'hosts/apocalypse')
| -rw-r--r-- | hosts/apocalypse/default.nix | 1 | ||||
| -rw-r--r-- | hosts/apocalypse/hardware-configuration.nix | 20 |
2 files changed, 11 insertions, 10 deletions
diff --git a/hosts/apocalypse/default.nix b/hosts/apocalypse/default.nix index c20c609..2782a6e 100644 --- a/hosts/apocalypse/default.nix +++ b/hosts/apocalypse/default.nix @@ -11,6 +11,7 @@ addons = { desktop.hyprland.enable = true; desktop.xfce.enable = true; + steam.enable = true; virtualisation.guest = false; virtualisation.host = true; diff --git a/hosts/apocalypse/hardware-configuration.nix b/hosts/apocalypse/hardware-configuration.nix index a3bd75f..7470331 100644 --- a/hosts/apocalypse/hardware-configuration.nix +++ b/hosts/apocalypse/hardware-configuration.nix @@ -59,21 +59,21 @@ menuentry 'UEFI Firmware' $menuentry_id_option 'uefi-firmware' { fsType = "btrfs"; options = [ "noatime" "compress=zstd" "subvol=/"]; }; - fileSystems."/store1" = - { device = "/dev/disk/by-uuid/6A2E2BFF2E2BC2C5"; - fsType = "ntfs-3g" ; - options = ["rw" "uid=1000" "gid=100"]; - }; + # fileSystems."/store1" = + # { device = "/dev/disk/by-uuid/6A2E2BFF2E2BC2C5"; + # fsType = "ntfs-3g" ; + # options = ["rw" "uid=1000" "gid=100"]; + # }; fileSystems."/win_games" = { device = "/dev/disk/by-uuid/6A680789680752ED"; fsType = "ntfs-3g" ; options = ["rw" "uid=1000" "gid=100"]; }; - fileSystems."/windows" = { - device = "/dev/disk/by-uuid/7AFA6C84FA6C3E8F"; - fsType = "ntfs-3g"; - options = ["rw" "uid=1000" "gid=100"]; - }; + # fileSystems."/windows" = { + # device = "/dev/disk/by-uuid/7AFA6C84FA6C3E8F"; + # fsType = "ntfs-3g"; + # options = ["rw" "uid=1000" "gid=100"]; + # }; swapDevices = [ { device = "/dev/mapper/cryptswap"; } |
