feat: change and enable some catppuccin things :333
This commit is contained in:
parent
70f9ea150d
commit
c046a504a5
2 changed files with 32 additions and 16 deletions
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, pkgs, inputs, spicetify-nix, agenix, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
spicetify-nix,
|
||||||
|
agenix,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
|
@ -16,30 +22,34 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
users.rhea = {
|
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";
|
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;
|
# inherit ./hyprland.nix;
|
||||||
home.username = "rhea";
|
home.username = "rhea";
|
||||||
home.homeDirectory = "/home/rhea";
|
home.homeDirectory = "/home/rhea";
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
catppuccin = {
|
catppuccin = {
|
||||||
flavor = "macchiato";
|
flavor = "mocha";
|
||||||
accent = "mauve";
|
accent = "mauve";
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [
|
gtk.catppuccin.enable = true;
|
||||||
inputs.catppuccin.homeManagerModules.catppuccin
|
|
||||||
inputs.spicetify-nix.homeManagerModules.default
|
imports =
|
||||||
inputs.nix-index-database.hmModules.nix-index
|
[
|
||||||
inputs.agenix.homeManagerModules.age
|
inputs.catppuccin.homeManagerModules.catppuccin
|
||||||
] ++ [
|
inputs.spicetify-nix.homeManagerModules.default
|
||||||
./desktop
|
inputs.nix-index-database.hmModules.nix-index
|
||||||
./essentials
|
inputs.agenix.homeManagerModules.age
|
||||||
./utils
|
]
|
||||||
./misc_pkgs
|
++ [
|
||||||
];
|
./desktop
|
||||||
|
./essentials
|
||||||
|
./utils
|
||||||
|
./misc_pkgs
|
||||||
|
];
|
||||||
|
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
|
|
@ -53,7 +63,11 @@
|
||||||
users.users.rhea = {
|
users.users.rhea = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Rhea";
|
description = "Rhea";
|
||||||
extraGroups = [ "networkmanager" "wheel" "storage" ];
|
extraGroups = [
|
||||||
|
"networkmanager"
|
||||||
|
"wheel"
|
||||||
|
"storage"
|
||||||
|
];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,5 +13,7 @@
|
||||||
gpg.format = "ssh";
|
gpg.format = "ssh";
|
||||||
user.signingkey = "/home/rhea/.ssh/etwas_sign_key";
|
user.signingkey = "/home/rhea/.ssh/etwas_sign_key";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
delta.catppuccin.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue