chore: enable flakes and nix-command by default in core module

This commit is contained in:
Youwen Wu 2024-09-17 02:13:06 -07:00
parent 202f294ce3
commit 5ab18f41ca
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
4 changed files with 7 additions and 12 deletions

View file

@ -149,10 +149,6 @@
"root" "root"
"youwen" "youwen"
]; ];
experimental-features = [
"nix-command"
"flakes"
];
}; };
services.udev.extraRules = '' services.udev.extraRules = ''

View file

@ -111,10 +111,6 @@
"root" "root"
"youwen" "youwen"
]; ];
experimental-features = [
"nix-command"
"flakes"
];
}; };
services.udev.extraRules = '' services.udev.extraRules = ''

View file

@ -132,10 +132,6 @@
"root" "root"
"youwen" "youwen"
]; ];
experimental-features = [
"nix-command"
"flakes"
];
}; };
services.udev.extraRules = '' services.udev.extraRules = ''

View file

@ -22,4 +22,11 @@
}; };
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
nix = {
settings.experimental-features = [
"nix-command"
"flakes"
];
};
} }