diff --git a/lib/hardware/base.nix b/lib/hardware/base.nix index 1def363..3c53259 100644 --- a/lib/hardware/base.nix +++ b/lib/hardware/base.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, modulesPath, ... }: { +{ ... }: { fileSystems."/" = { device = "/dev/disk/by-label/NixOS"; fsType = "ext4"; diff --git a/lib/hardware/qemu.nix b/lib/hardware/qemu.nix index 1137d58..5011ec0 100644 --- a/lib/hardware/qemu.nix +++ b/lib/hardware/qemu.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, modulesPath, ... }: { +{ modulesPath, ... }: { imports = [ ./base.nix (modulesPath + "/profiles/qemu-guest.nix") diff --git a/lib/machines/nixos.nix b/lib/machines/nixos.nix index f3b047d..d3831ad 100644 --- a/lib/machines/nixos.nix +++ b/lib/machines/nixos.nix @@ -1,4 +1,4 @@ -{ nixpkgs, ... }: { +{ ... }: { imports = [ ../hardware/qemu.nix ];