diff options
| author | brustybee <bee@4d2.org> | 2026-03-07 05:10:56 +0530 |
|---|---|---|
| committer | brustybee <bee@4d2.org> | 2026-03-07 05:10:56 +0530 |
| commit | 20bb620ba13e9dd2617782fd8b48f02abed9d2ad (patch) | |
| tree | 5d93312e4d3a70f84352d114e0c95e9af62f3836 /hosts/nixios | |
| parent | ff3198ee65f1c217d51be133816a76c0648afcd7 (diff) | |
Fix modules to properly guard HM-only config from NixOS evaluatio
Diffstat (limited to 'hosts/nixios')
| -rw-r--r-- | hosts/nixios/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/nixios/default.nix b/hosts/nixios/default.nix index 28a7710..1eb9a86 100644 --- a/hosts/nixios/default.nix +++ b/hosts/nixios/default.nix @@ -11,9 +11,10 @@ ... }: { - imports = [ + imports = with inputs.self.nixosModules; [ ./hardware-configuration.nix (import ../common.nix { inherit user; }) + beeMods ]; # REMOVE LATER @@ -35,6 +36,10 @@ programs.dconf.enable = true; security.pam.services.swaylock = { }; + beeMods = { + mango.enable = true; + }; + xdg.portal = lib.mkForce { enable = true; extraPortals = [ |
