26 lines
561 B
Nix
26 lines
561 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
# Install Wofi
|
|
environment.systemPackages = with pkgs; [ wofi ];
|
|
|
|
# Home Manager configuration for Wofi
|
|
home-manager.users.henrov = {
|
|
home.file = {
|
|
".config/wofi/config".text = builtins.readFile ./assets/hyprland/conf/wofi/wofi.conf;
|
|
".config/wofi/style.css".source = ./assets/hyprland/conf/wofi/theming.css;
|
|
};
|
|
|
|
# Environment variables for Wofi
|
|
home.sessionVariables = {
|
|
WOFI_CONFIG = "$HOME/.config/wofi/config";
|
|
WOFI_STYLE = "$HOME/.config/wofi/style.css";
|
|
};
|
|
};
|
|
}
|