diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-12 22:19:10 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-12 22:19:10 -0500 |
commit | f27bfc6446b493a1edeff658de1f467a1a167c41 (patch) | |
tree | 34f550f7a5bfda4242c3fc306a04b910ab6195ae | |
parent | b270dba4fe994ddcb8f1fd771dcd98a92d7e5f7b (diff) | |
download | nixos-config-f27bfc6446b493a1edeff658de1f467a1a167c41.tar.gz nixos-config-f27bfc6446b493a1edeff658de1f467a1a167c41.zip |
hosts/ades/common: Add missing import of ./hardware.nix
-rw-r--r-- | hosts/ades/common.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/ades/common.nix b/hosts/ades/common.nix index 1a32da0..3f6dc85 100644 --- a/hosts/ades/common.nix +++ b/hosts/ades/common.nix @@ -1,6 +1,10 @@ { lib, pkgs, ... }: { + imports = [ + ./hardware.nix + ]; + this.pc.enable = true; this.overlays.emacs.enable = lib.mkForce false; this.gui.enable = true; |