diff --git a/configuration.nix b/configuration.nix index bbca0a2..998e8c1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -5,10 +5,7 @@ { config, pkgs, lib, ... }: { - imports = - [ # Include the results of the hardware scan. - ./hardware-configuration.nix - ]; + imports = []; # Bootloader. boot.loader.grub.enable = true; diff --git a/flake.nix b/flake.nix index 42419f8..6347e9b 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ nixosConfigurations = { lift = lib.nixosSystem { system = "x64_64-linux"; - modules = [ ./configuration.nix ./sway.nix ]; + modules = [ ./configuration.nix ./sway.nix ./hardware-configuration.nix ]; }; }; };