new wm, hyprland gone

This commit is contained in:
Reid 2025-05-18 23:05:26 -07:00
parent 003f37bfbd
commit cb4b22b4e5
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
41 changed files with 1145 additions and 1364 deletions

View file

@ -45,24 +45,6 @@ in {
size = 24;
};
sddmTheme = {
name = "catppuccin-${variant}";
package = (pkgs.catppuccin-sddm.override {
flavor = variant;
font = config.modules.desktop.fonts.fonts.sansSerif.family;
fontSize = toString config.modules.desktop.fonts.fonts.sansSerif.size;
background = ../../../../assets/lockscreen.jpg;
loginBackground = true;
});
};
plymouthTheme = {
name = "catppuccin-${variant}";
package = (pkgs.catppuccin-plymouth.override {
variant = variant;
});
};
editor = {
vscode = {
colorTheme = {
@ -84,21 +66,13 @@ in {
};
};
hyprland = {
source = "${inputs.hyprland-catppuccin}/themes/${variant}.conf";
extraConfig = ''
general {
col.active_border=''$${accent}
col.inactive_border=$surface0
}
decoration:shadow {
color=$crust
color_inactive=$crust
}
misc {
background_color=$crust
}
'';
niri = with colorScheme.palette; {
# TODO: make more dynamic
# catppuccin pink
accent = "#f5c2e7";
inactive = "#${base02}";
# catppuccin crust
shadow = "#11111b";
};
waybar = builtins.concatStringsSep "\n" [
@ -113,17 +87,17 @@ in {
barColor = "${base05}FF";
};
rofi = ./rofi.rasi;
rofi = builtins.concatStringsSep "\n" [
"@theme \"${inputs.rofi-catppuccin}/themes/catppuccin-${variant}.rasi\""
"* { accent: @${accent}; }"
(lib.readFile ./rofi.rasi)
];
fuzzel = "${inputs.fuzzel-catppuccin}/themes/catppuccin-${variant}/${accent}.ini";
wezterm = ''
config.color_scheme = 'Catppuccin ${pascalCase variant}'
'';
nwg-drawer = builtins.concatStringsSep "\n" [
"@import \"${inputs.waybar-catppuccin}/themes/${variant}.css\";"
#"@define-color accent @${accent};" # gtk already does our styling here
(lib.readFile ./nwg-drawer.css)
];
};
};
}