mirror of
https://github.com/zephrynis/nix-flake.git
synced 2026-02-18 12:11:54 +00:00
- Add complete colorshell v2.0.3 configuration to home/ags-config/ - Disable runner plugin and NightLight tile (incompatible with NixOS) - Customize SCSS with full opacity (no transparency) - Add dark pale blue color scheme in home/pywal-colors/ - Configure Papirus-Dark icon theme via home-manager - Make ~/.config/ags/ immutable and managed by Nix store - Auto-deploy pywal colors to ~/.cache/wal/colors.json All AGS configuration is now reproducible and version controlled.
62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# AGS v3 - Aylur's GTK Shell with Astal (colorshell configuration)
|
|
imports = [ inputs.ags.homeManagerModules.default ];
|
|
|
|
programs.ags = {
|
|
enable = true;
|
|
|
|
# Use colorshell configuration from flake directory
|
|
# The gresource file needs to be pre-built in the source
|
|
configDir = ./ags-config;
|
|
|
|
# Add Astal packages needed for colorshell
|
|
extraPackages = with pkgs; [
|
|
inputs.astal.packages.${pkgs.system}.astal3
|
|
inputs.astal.packages.${pkgs.system}.apps
|
|
inputs.astal.packages.${pkgs.system}.auth
|
|
inputs.astal.packages.${pkgs.system}.battery
|
|
inputs.astal.packages.${pkgs.system}.bluetooth
|
|
inputs.astal.packages.${pkgs.system}.hyprland
|
|
inputs.astal.packages.${pkgs.system}.mpris
|
|
inputs.astal.packages.${pkgs.system}.network
|
|
inputs.astal.packages.${pkgs.system}.notifd
|
|
inputs.astal.packages.${pkgs.system}.powerprofiles
|
|
inputs.astal.packages.${pkgs.system}.tray
|
|
inputs.astal.packages.${pkgs.system}.wireplumber
|
|
|
|
# Additional dependencies for colorshell
|
|
nodejs_22
|
|
pnpm
|
|
glib
|
|
glib.dev # For glib-compile-resources
|
|
gtk4
|
|
libadwaita
|
|
networkmanager
|
|
bluez
|
|
|
|
# Icon theme for fixing "network-wired-symbolic" warnings
|
|
papirus-icon-theme
|
|
];
|
|
};
|
|
|
|
# Install icon themes system-wide to fix colorshell icon warnings
|
|
home.packages = with pkgs; [
|
|
papirus-icon-theme
|
|
adwaita-icon-theme
|
|
];
|
|
|
|
# Set GTK icon theme to Papirus
|
|
gtk = {
|
|
enable = true;
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
};
|
|
|
|
# Manage pywal colors for colorshell
|
|
home.file.".cache/wal/colors.json".source = ./pywal-colors/colors.json;
|
|
}
|