From 36939942004740866a8d3897e0882e0e6211d789 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 1 May 2024 15:10:54 +0200 Subject: [PATCH] Remove unnecessary attributes --- lib/hardware/base.nix | 2 +- lib/hardware/qemu.nix | 2 +- lib/machines/nixos.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 ];