saloonmoonin

This commit is contained in:
KaitoTLex 2024-11-28 00:48:21 -08:00
parent 4aa28922a6
commit d607020a40
11 changed files with 390 additions and 58 deletions

View file

@ -19,11 +19,6 @@
"flakes"
];
optimise.automatic = true;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
# Free up to 1GiB when there is less than 100MiB left
extraOptions = ''
min-free = ${toString (100 * 1024 * 1024)}
@ -50,7 +45,7 @@
};
packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-cjk-sans
noto-fonts-emoji
(nerdfonts.override { fonts = [ "CascadiaCode" ]; })
];
@ -70,6 +65,13 @@
];
};
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep 3 --keep-since 4d";
flake = "/home/kaitotlex/nixos";
};
programs.fish.enable = true;
users.users.kaitotlex.shell = pkgs.fish;
}