diff options
author | Karel Kočí <cynerd@email.cz> | 2022-12-08 09:19:10 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-12-08 09:19:10 +0100 |
commit | a49e6748560b02f1c30e8740b25fe04cf21588b9 (patch) | |
tree | 4fa14aa56c2c58bde1963e023cb14e8e8881ab6d | |
parent | 60b9444ad06eafbe22e00e6dd9c04fb0c9e53993 (diff) | |
download | nixos-personal-a49e6748560b02f1c30e8740b25fe04cf21588b9.tar.gz nixos-personal-a49e6748560b02f1c30e8740b25fe04cf21588b9.tar.bz2 nixos-personal-a49e6748560b02f1c30e8740b25fe04cf21588b9.zip |
nixos: remove unused hardware.nix
-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 = { - }; - -} |