feat: switch from ghostty to foot terminal emulator, add catppuccin cursors
This commit is contained in:
+20
-7
@@ -1,7 +1,6 @@
|
||||
{ inputs, pkgs, ... }:
|
||||
{ inputs, lib, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
inputs.nixvim.homeModules.nixvim
|
||||
inputs.zen-browser.homeModules.default
|
||||
|
||||
./programs
|
||||
@@ -10,12 +9,15 @@
|
||||
./packages.nix
|
||||
./xdg.nix
|
||||
];
|
||||
|
||||
home.username = "autumn";
|
||||
home.homeDirectory = "/home/autumn";
|
||||
home.stateVersion = "25.05";
|
||||
|
||||
programs.ghostty.enable = true;
|
||||
programs.ghostty.settings.font-size = 24;
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
settings.main.font = lib.mkForce "Caskaydia Cove Mono:size=24";
|
||||
};
|
||||
|
||||
stylix = {
|
||||
targets.waybar.enable = false;
|
||||
@@ -31,9 +33,20 @@
|
||||
};
|
||||
|
||||
home.pointerCursor = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.adwaita-icon-theme;
|
||||
size = 12;
|
||||
name = "catppuccin-mocha-pink-cursors";
|
||||
package = pkgs.catppuccin-cursors.mochaPink;
|
||||
size = 6;
|
||||
x11.enable = true;
|
||||
gtk.enable = true;
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
cursorTheme = {
|
||||
name = "catppuccin-mocha-pink-cursors";
|
||||
package = pkgs.catppuccin-cursors.mochaPink;
|
||||
size = 6;
|
||||
};
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user