diff --git a/ahrc-laptop/configuration.nix b/ahrc-laptop/configuration.nix index 262f5c6..ffc7500 100644 --- a/ahrc-laptop/configuration.nix +++ b/ahrc-laptop/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ pkgs, ... }: { imports = [ ../common/configuration.nix ./hardware-configuration.nix ]; diff --git a/ahrc-laptop/hardware-configuration.nix b/ahrc-laptop/hardware-configuration.nix index c9b3904..1d77775 100644 --- a/ahrc-laptop/hardware-configuration.nix +++ b/ahrc-laptop/hardware-configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, modulesPath, ... }: +{ config, lib, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; diff --git a/ahrc-laptop/home.nix b/ahrc-laptop/home.nix index cce9611..aab794a 100644 --- a/ahrc-laptop/home.nix +++ b/ahrc-laptop/home.nix @@ -1,5 +1,3 @@ -{ config, pkgs, ... }: - { imports = [ ../common/home.nix ]; diff --git a/ahrc-pc/configuration.nix b/ahrc-pc/configuration.nix index 8c16b06..0f7879c 100644 --- a/ahrc-pc/configuration.nix +++ b/ahrc-pc/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ pkgs, ... }: { imports = [ ../common/configuration.nix ./hardware-configuration.nix ]; diff --git a/ahrc-pc/hardware-configuration.nix b/ahrc-pc/hardware-configuration.nix index 661aa9d..cf51e95 100644 --- a/ahrc-pc/hardware-configuration.nix +++ b/ahrc-pc/hardware-configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, modulesPath, ... }: +{ config, lib, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; diff --git a/ahrc-pc/home.nix b/ahrc-pc/home.nix index 0f4601e..5af6036 100644 --- a/ahrc-pc/home.nix +++ b/ahrc-pc/home.nix @@ -1,5 +1,3 @@ -{ config, pkgs, ... }: - { imports = [ ../common/home.nix ]; diff --git a/common/configuration.nix b/common/configuration.nix index a384e13..537ee37 100644 --- a/common/configuration.nix +++ b/common/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ lib, pkgs, ... }: { boot.loader.systemd-boot.enable = true; diff --git a/common/home.nix b/common/home.nix index ca5cc0d..d4107be 100644 --- a/common/home.nix +++ b/common/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { home.username = "ahurac"; diff --git a/flake.nix b/flake.nix index 58a5f8d..32ad46a 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ anyrun.inputs.nixpkgs.follows = "nixpkgs"; }; - outputs = { self, nixpkgs, home-manager, flatpaks, anyrun, ... }@inputs: { + outputs = { nixpkgs, home-manager, flatpaks, anyrun, ... }: { nixosConfigurations.ahrc-pc = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [