diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-08-17 20:48:18 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-08-17 20:48:18 -0500 |
| commit | 2b1c6161c5d2381cbfe224694dfb218aee0b6da1 (patch) | |
| tree | e51c7bd694d5ad27fb9e68e51f11aae4e8c57fcc /modules/system | |
| parent | e29dd8a2283399b7e046937340509d5aec4b52ba (diff) | |
something is seriously broken rn
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/nixos/boot.nix | 2 | ||||
| -rw-r--r-- | modules/system/options.nix | 10 |
2 files changed, 1 insertions, 11 deletions
diff --git a/modules/system/nixos/boot.nix b/modules/system/nixos/boot.nix index aefc6da..3b095ab 100644 --- a/modules/system/nixos/boot.nix +++ b/modules/system/nixos/boot.nix @@ -74,7 +74,7 @@ in { }; }); - system.etc.overlay.enable = true; + # system.etc.overlay.enable = true; system.nixos-init.enable = true; # store journald logs in memory diff --git a/modules/system/options.nix b/modules/system/options.nix index cbc8cd1..931565f 100644 --- a/modules/system/options.nix +++ b/modules/system/options.nix @@ -29,14 +29,4 @@ in { bluetooth.enable = mkEnableOption "bluetooth"; printing.enable = mkEnableOption "cups printing server"; }; - - config.assertions = [ - { - assertion = let - cfg = config.collinux.system.network.wireless; - in - !(cfg.static != null && cfg.dynamic); - message = "Configure a static wireless connection or a dynamic one; not both."; - } - ]; } |
