fix!: migrate to wofi

This commit is contained in:
2025-07-03 18:04:03 -07:00
parent 30c5043f97
commit 80ae6d8af2
7 changed files with 88 additions and 25 deletions

20
nix/modules/wofi.nix Normal file
View File

@@ -0,0 +1,20 @@
{
pkgs,
lib,
config,
...
}:
{
options.wofi = {
enable = lib.mkEnableOption "enable wofi";
};
config = lib.mkIf config.wofi.enable {
environment.systemPackages = with pkgs; [ wofi ];
home-manager.users.luca = {
xdg.configFile = {
wofi.source = ../../custom/wofi;
};
};
};
}