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 = [
|
||||
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;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -13,5 +13,7 @@
|
|||
gpg.format = "ssh";
|
||||
user.signingkey = "/home/rhea/.ssh/etwas_sign_key";
|
||||
};
|
||||
|
||||
delta.catppuccin.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue