|
|
@ -85,12 +85,14 @@ nix-channel --update |
|
|
|
|
|
|
|
### configuration.nix tweak |
|
|
|
Finally we need to add a small tweak inside of `/etc/nixos/configuration.nix`. We will |
|
|
|
supress the `sys-kernel-debug.mount` systemd unit as it will otherwise error upon |
|
|
|
supress some systemds unit as they will otherwise error upon |
|
|
|
every invocation of `nixos-rebuild switch` which can be annoying. |
|
|
|
```nix |
|
|
|
# Supress sys-kernel-debug |
|
|
|
systemd.suppressedSystemUnits = [ |
|
|
|
"dev-mqueue.mount" |
|
|
|
"sys-kernel-debug.mount" |
|
|
|
"sys-fs-fuse-connections.mount" |
|
|
|
]; |
|
|
|
``` |
|
|
|
|
|
|
|