feat: change and enable some catppuccin things :333

This commit is contained in:
EinEtwas 2024-10-27 00:29:24 +02:00
parent 70f9ea150d
commit c046a504a5
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
2 changed files with 32 additions and 16 deletions

View file

@ -1,4 +1,10 @@
{ config, pkgs, inputs, spicetify-nix, agenix, ... }:
{
pkgs,
inputs,
spicetify-nix,
agenix,
...
}:
{
imports = [
inputs.home-manager.nixosModules.home-manager
@ -16,25 +22,29 @@
};
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 = [
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
@ -53,7 +63,11 @@
users.users.rhea = {
isNormalUser = true;
description = "Rhea";
extraGroups = [ "networkmanager" "wheel" "storage" ];
extraGroups = [
"networkmanager"
"wheel"
"storage"
];
shell = pkgs.zsh;
};

View file

@ -13,5 +13,7 @@
gpg.format = "ssh";
user.signingkey = "/home/rhea/.ssh/etwas_sign_key";
};
delta.catppuccin.enable = true;
};
}