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
+7
View File
@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
imports = [
./zen
];
}
+15
View File
@@ -0,0 +1,15 @@
{ inputs, config, lib, pkgs, ... }:
with lib;
let
cfg = config.dov.browser.zen;
in {
options.dov.browser.zen.enable = mkEnableOption "zen config";
config = mkIf cfg.enable {
home.packages = with pkgs; [
inputs.zen-browser.packages."${system}".default
];
};
}