Working on hyprland config

This commit is contained in:
2026-03-15 16:17:48 +00:00
parent c6e706fce3
commit 583fe49d9c
16 changed files with 119 additions and 590 deletions
@@ -1,27 +0,0 @@
{
config,
pkgs,
lib,
user,
flakeRoot,
...
}:
let
xdgDataHome = config.home-manager.users.${user.username}.xdg.dataHome;
in
{
# NixOS: Install Wofi system-wide (optional)
environment.systemPackages = with pkgs; [ wofi ];
# Home Manager: User-specific Wofi config
home-manager.users.${user.username} = {
# Install Wofi for the user
home.packages = with pkgs; [ wofi ];
# Wofi configuration
xdg.configFile."wofi/config".source = "${flakeRoot}/assets/system/conf/wofi/wofi.conf";
# Custom Catppuccin Mocha theme for Wofi
xdg.configFile."wofi/style.css".source = "${flakeRoot}/assets/system/conf/wofi/theming.css";
};
}