11 lines
238 B
Nix
11 lines
238 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let cfg = config.modules.wofi;
|
|
|
|
in {
|
|
options.modules.wofi = { enable = mkEnableOption "wofi"; };
|
|
config = mkIf cfg.enable {
|
|
home.file.".config/wofi.css".source = ./wofi.css;
|
|
};
|
|
}
|