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

13 lines
146 B
Nix
Raw Normal View History

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