marleyos/modules/nixos/base/nix/default.nix

13 lines
146 B
Nix
Raw Normal View History

2025-01-07 03:13:38 +00:00
{pkgs, ...}: {
nix = {
package = pkgs.lix;
settings = {
trusted-users = [
"root"
"@wheel"
];
};
};
}