Added initial files

This commit is contained in:
baduhai 2022-11-29 17:36:21 -03:00
commit 0c97384a8d
20 changed files with 874 additions and 0 deletions

13
hosts/common/nix.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, lib, ... }:
{
nix = {
extraOptions = "experimental-features = nix-command flakes";
gc = { # Garbage collector
automatic = true;
options = "--delete-older-than 8d";
};
};
system.stateVersion = "22.05";
}