update: fix formatting

This commit is contained in:
Veneficium 2024-08-18 08:36:22 +02:00
parent bf6822e056
commit 3b13ee85b9

View file

@ -3,6 +3,7 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
@ -11,7 +12,6 @@
outputs = inputs@{ self, nixpkgs, home-manager, ... }: outputs = inputs@{ self, nixpkgs, home-manager, ... }:
let let
pkgs = system: import nixpkgs { pkgs = system: import nixpkgs {
inherit system; inherit system;
overlays = [ overlays = [
@ -19,10 +19,7 @@
]; ];
config = { allowUnfree = true; }; config = { allowUnfree = true; };
}; };
in {
in
{
nixosConfigurations = { nixosConfigurations = {
fedfer-main-laptop-nixos = nixpkgs.lib.nixosSystem rec { fedfer-main-laptop-nixos = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux"; system = "x86_64-linux";
@ -46,7 +43,6 @@
./hosts/main-homelab/configuration.nix ./hosts/main-homelab/configuration.nix
]; ];
}; };
}; };
}; };
} }