Big omen laptop migration

This commit is contained in:
Alexander Derevianko
2025-08-01 21:25:58 +02:00
parent 9bd163a32c
commit 2ed1f0163c
40 changed files with 3012 additions and 8 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.dov.launcher.wofi;
in {
options.dov.launcher.wofi.enable = mkEnableOption "wofi configuration";
config = mkIf cfg.enable {
home.packages = [ pkgs.wofi ];
};
}