Compare commits

..

1 Commits

Author SHA1 Message Date
a28eb9ac65
Enable custom sys-devices system feature 2025-10-02 17:25:48 +02:00
3 changed files with 10 additions and 10 deletions

View File

@ -11,7 +11,7 @@
./base/hw.nix
./base/net.nix
./base/nix.nix
./base/nosv.nix
./base/sys-devices.nix
./base/ntp.nix
./base/rev.nix
./base/ssh.nix

View File

@ -1,9 +0,0 @@
{ ... }:
{
nix.settings.system-features = [ "nosv" ];
programs.nix-required-mounts.enable = true;
programs.nix-required-mounts.allowedPatterns.nosv.paths = [
"/sys/devices/system/cpu"
"/sys/devices/system/node"
];
}

View File

@ -0,0 +1,9 @@
{
nix.settings.system-features = [ "sys-devices" ];
programs.nix-required-mounts.enable = true;
programs.nix-required-mounts.allowedPatterns.sys-devices.paths = [
"/sys/devices/system/cpu"
"/sys/devices/system/node"
];
}