diff options
-rw-r--r-- | nixos/modules/default.nix | 1 | ||||
-rw-r--r-- | nixos/modules/hardware.nix | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix index 278f2d8..fd60aa4 100644 --- a/nixos/modules/default.nix +++ b/nixos/modules/default.nix @@ -5,7 +5,6 @@ nixpkgs: { cynerd-develop = import ./develop.nix nixpkgs; cynerd-gaming = import ./gaming.nix; cynerd-generic = import ./generic.nix; - cynerd-hardware = import ./hardware.nix; cynerd-hosts = import ./hosts.nix; cynerd-openvpn = import ./openvpn.nix; cynerd-syncthing = import ./syncthing.nix; diff --git a/nixos/modules/hardware.nix b/nixos/modules/hardware.nix deleted file mode 100644 index d6bbd94..0000000 --- a/nixos/modules/hardware.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; - -{ - - options = { }; - - config = { - }; - -} |