This commit is contained in:
Lilith 2025-02-27 00:44:53 +01:00
parent a425c0a14e
commit 836a7e0e2c
Signed by: lilith
GPG key ID: 8712A0F317C37175
2 changed files with 20 additions and 0 deletions

11
system/btrfs.nix Normal file
View file

@ -0,0 +1,11 @@
{...}: {
services.btrfs.autoScrub = {
enable = true;
interval = "Fri 07:00";
fileSystems = [
"/persist"
"/nix"
];
};
}

9
system/env.nix Normal file
View file

@ -0,0 +1,9 @@
{...}: {
time.timeZone = "Europe/Berlin";
environment.variables = {
EDITOR = "hx";
VISUAL = "hx";
FLAKE = "/home/lilith/nixos";
};
}