allow cdrom use

This commit is contained in:
jaina heartles 2024-07-21 22:21:55 -07:00
parent 755f563a21
commit 3b3fd16848
2 changed files with 8 additions and 1 deletions

View file

@ -220,7 +220,7 @@ in {
users.users.jaina = {
isNormalUser = true;
uid = 1000;
extraGroups = [ "wheel" "networkmanager" "libvirtd" "adbusers" ];
extraGroups = [ "wheel" "networkmanager" "libvirtd" "adbusers" "cdrom" ];
packages = with pkgs; [ fish ];
shell = pkgs.fish;
};

7
nfs.nix Normal file
View file

@ -0,0 +1,7 @@
{
fileSystems."/net/video" = {
device = "supplydepot:/video";
fsType = "nfs";
options = [ "nfsvers=4.1" "x-systemd.automount" "noauto" ];
};
}