This commit is contained in:
Lucy von Overheidt 2025-09-14 01:05:02 +02:00
parent 43b68d7d75
commit 0c9f150374
2 changed files with 18 additions and 0 deletions

4
modules/git.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }:
{
programs.git.enable = true;
}

14
modules/nix.nix Normal file
View file

@ -0,0 +1,14 @@
{ ... }:
{
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"lucy"
];
};
}