This commit is contained in:
parent
61f0a38997
commit
e0846af5e3
9 changed files with 2 additions and 3 deletions
1
nixos/hosts/olympus/eevee/home/.gitignore
vendored
Normal file
1
nixos/hosts/olympus/eevee/home/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*dconf_dump*
|
13
nixos/hosts/olympus/eevee/home/default.nix
Normal file
13
nixos/hosts/olympus/eevee/home/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
_: {
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.username = "victor";
|
||||
home.homeDirectory = "/home/victor";
|
||||
home.stateVersion = "23.05";
|
||||
|
||||
imports = [ ../../../../common/desktop/home.nix ];
|
||||
|
||||
dconf.settings."org/gnome/desktop/peripherals/mouse" = {
|
||||
accel-profile = "flat";
|
||||
};
|
||||
}
|
32
nixos/hosts/olympus/eevee/home/theme.nix
Normal file
32
nixos/hosts/olympus/eevee/home/theme.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ pkgs, config, ... }:
|
||||
let
|
||||
theme = "Catppuccin-Pink-Dark";
|
||||
cursorTheme = config.home.pointerCursor.name;
|
||||
in {
|
||||
home.pointerCursor = {
|
||||
name = "Bibata-Modern-Classic";
|
||||
size = 24;
|
||||
package = pkgs.bibata-cursors;
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = {
|
||||
name = theme;
|
||||
package = pkgs.catppuccin-gtk;
|
||||
};
|
||||
iconTheme = {
|
||||
name = "Papirus-Dark";
|
||||
package = pkgs.papirus-icon-theme.override { color = "violet"; };
|
||||
};
|
||||
cursorTheme = {
|
||||
name = cursorTheme;
|
||||
inherit (config.home.pointerCursor) package size;
|
||||
};
|
||||
};
|
||||
|
||||
programs.vscode = {
|
||||
userSettings."workbench.colorTheme" = "Catppuccin Frappé";
|
||||
extensions = [ pkgs.vscode-extensions.catppuccin.catppuccin-vsc ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue