feat(nixos): Nix module

This commit is contained in:
punkfairie 2025-01-06 19:13:38 -08:00
parent 28e81a3555
commit 8c5d0e2dbd
No known key found for this signature in database
GPG key ID: B3C5488E9A1A7CA6

View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
nix = {
package = pkgs.lix;
settings = {
trusted-users = [
"root"
"@wheel"
];
};
};
}