diff --git a/hosts/alpheratz/hardware-configuration.nix b/hosts/alpheratz/hardware-configuration.nix index 954266b..6697c4a 100644 --- a/hosts/alpheratz/hardware-configuration.nix +++ b/hosts/alpheratz/hardware-configuration.nix @@ -31,6 +31,12 @@ options = [ "subvol=nix" ]; }; + fileSystems."/mnt/drive0" = + { device = "/dev/sr0"; + fsType = "auto"; + options = [ "ro" "user" "noauto" "unhide" ]; + }; + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking diff --git a/hosts/alpheratz/system.nix b/hosts/alpheratz/system.nix index 6390645..7cb928d 100644 --- a/hosts/alpheratz/system.nix +++ b/hosts/alpheratz/system.nix @@ -67,6 +67,7 @@ bottles quartus-prime-lite discord + wine ]; services.printing.enable = false; @@ -118,7 +119,7 @@ # Define a user account. users.users.eesim = { isNormalUser = true; - extraGroups = [ "wheel" "video" "audio" "networkmanager" ]; + extraGroups = [ "wheel" "video" "audio" "networkmanager" "cdrom" ]; shell = pkgs.fish; };