games-night/modules/nix.nix

15 lines
165 B
Nix
Raw Permalink Normal View History

2025-09-14 01:05:02 +02:00
{ ... }:
{
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"lucy"
];
};
}