Compare commits

..

No commits in common. "06ef7114c1ca02487ad20810847813671b26b461" and "637353ae90af1fbb06b68062da2c309f0f8abc83" have entirely different histories.

5 changed files with 16 additions and 11 deletions

View File

@ -13,14 +13,14 @@
picture-uri = "file://${wallpaper}";
};
"org/cinnamon/desktop/interface" = {
font-name = "MonaspiceNe Nerd Font Regular 10";
font-name = "Monaspace Neon 10";
};
"org/cinnamon/desktop/wm/preferences" = {
titlebar-font = "MonaspiceNe Nerd Font Bold 10";
titlebar-font = "Monaspace Neon Bold 10";
};
"org/gnome/desktop/interface" = {
document-font-name = "MonaspiceXe Nerd Font Regular 10";
monospace-font-name = "MonaspiceAr Nerd Font Regular 10";
document-font-name = "Monaspace Xenon 10";
monospace-font-name = "Monaspace Argon 10";
};
};

View File

@ -4,7 +4,7 @@
background-opacity = 0.9
command = nu
confirm-close-surface = false
font-family = MonaspiceNe Nerd Font
font-family = Monaspace Neon
theme = catppuccin-mocha
term = xterm-256color
'';

View File

@ -14,7 +14,7 @@ in
home.packages = [ zed-fhs ];
xdg.configFile = {
"zed/settings.json".text = builtins.toJSON {
buffer_font_family = "MonaspiceNe Nerd Font";
buffer_font_family = "Monaspace Neon";
buffer_font_size = 13;
soft_wrap = "editor_width";
telemetry = {
@ -22,7 +22,7 @@ in
metrics = false;
};
terminal = {
font_family = "MonaspiceNe Nerd Font";
font_family = "Monaspace Neon";
shell = {
program = "nu";
};

View File

@ -22,10 +22,14 @@
};
};
};
fonts.packages = with pkgs.nerd-fonts; [
hack
iosevka
jetbrains-mono
fonts.packages = with pkgs; [
(nerdfonts.override {
fonts = [
"JetBrainsMono"
"Iosevka"
"Hack"
];
})
monaspace
];
environment.systemPackages = [ pkgs.tailscale-systray ];

View File

@ -54,6 +54,7 @@
experimental-features = [
"flakes"
"nix-command"
"repl-flake"
];
auto-optimise-store = true;
warn-dirty = false;