From c046a504a5006a5e58158bc9c9a5050dedf45ffe Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Sun, 27 Oct 2024 00:29:24 +0200 Subject: [PATCH] feat: change and enable some catppuccin things :333 --- home/default.nix | 46 +++++++++++++++++++++++++++-------------- home/essentials/git.nix | 2 ++ 2 files changed, 32 insertions(+), 16 deletions(-) diff --git a/home/default.nix b/home/default.nix index 74fe327..3cf484f 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,4 +1,10 @@ -{ config, pkgs, inputs, spicetify-nix, agenix, ... }: +{ + pkgs, + inputs, + spicetify-nix, + agenix, + ... +}: { imports = [ inputs.home-manager.nixosModules.home-manager @@ -16,30 +22,34 @@ }; users.rhea = { - /* The home.stateVersion option does not have a default and must be set */ + # The home.stateVersion option does not have a default and must be set home.stateVersion = "24.05"; - /* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */ + # Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; # inherit ./hyprland.nix; home.username = "rhea"; home.homeDirectory = "/home/rhea"; programs.home-manager.enable = true; catppuccin = { - flavor = "macchiato"; + flavor = "mocha"; accent = "mauve"; }; - imports = [ - inputs.catppuccin.homeManagerModules.catppuccin - inputs.spicetify-nix.homeManagerModules.default - inputs.nix-index-database.hmModules.nix-index - inputs.agenix.homeManagerModules.age - ] ++ [ - ./desktop - ./essentials - ./utils - ./misc_pkgs - ]; + gtk.catppuccin.enable = true; + + imports = + [ + inputs.catppuccin.homeManagerModules.catppuccin + inputs.spicetify-nix.homeManagerModules.default + inputs.nix-index-database.hmModules.nix-index + inputs.agenix.homeManagerModules.age + ] + ++ [ + ./desktop + ./essentials + ./utils + ./misc_pkgs + ]; home.pointerCursor = { gtk.enable = true; @@ -53,7 +63,11 @@ users.users.rhea = { isNormalUser = true; description = "Rhea"; - extraGroups = [ "networkmanager" "wheel" "storage" ]; + extraGroups = [ + "networkmanager" + "wheel" + "storage" + ]; shell = pkgs.zsh; }; diff --git a/home/essentials/git.nix b/home/essentials/git.nix index 28d95bc..49aa222 100644 --- a/home/essentials/git.nix +++ b/home/essentials/git.nix @@ -13,5 +13,7 @@ gpg.format = "ssh"; user.signingkey = "/home/rhea/.ssh/etwas_sign_key"; }; + + delta.catppuccin.enable = true; }; }