allow cdrom use
This commit is contained in:
parent
755f563a21
commit
3b3fd16848
2 changed files with 8 additions and 1 deletions
|
@ -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
7
nfs.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
fileSystems."/net/video" = {
|
||||
device = "supplydepot:/video";
|
||||
fsType = "nfs";
|
||||
options = [ "nfsvers=4.1" "x-systemd.automount" "noauto" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue