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;
}

View file

@ -0,0 +1,36 @@
{ inputs, pkgs, ... }:
{
imports = [
inputs.stylix.nixosModules.stylix
];
stylix = {
enable = true;
image = "${inputs.wallpapers}/math/bifurcation.png";
polarity = "dark";
fonts = {
serif = {
name = "Noto Serif";
package = pkgs.noto-fonts;
};
sansSerif = {
name = "Noto Sans";
package = pkgs.noto-fonts;
};
emoji = {
name = "Noto Color Emoji";
package = pkgs.noto-fonts-emoji;
};
monospace = {
name = "CaskaydiaCove Nerd Font";
package = (pkgs.nerdfonts.override { fonts = [ "CascadiaCode" ]; });
};
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 26;
};
};
}