Remove unnecessary attributes

This commit is contained in:
Manuel Thalmann 2024-05-01 15:10:54 +02:00
parent 556706f43c
commit 3693994200
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, ... }: {
{ ... }: {
fileSystems."/" = {
device = "/dev/disk/by-label/NixOS";
fsType = "ext4";

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, modulesPath, ... }: {
{ modulesPath, ... }: {
imports = [
./base.nix
(modulesPath + "/profiles/qemu-guest.nix")

View file

@ -1,4 +1,4 @@
{ nixpkgs, ... }: {
{ ... }: {
imports = [
../hardware/qemu.nix
];