From 3b13ee85b99872cafe45cc5608749ec98b005309 Mon Sep 17 00:00:00 2001 From: Veneficium <85629831+veneficium42@users.noreply.github.com> Date: Sun, 18 Aug 2024 08:36:22 +0200 Subject: [PATCH] update: fix formatting --- flake.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 002d221..4db25c3 100644 --- a/flake.nix +++ b/flake.nix @@ -3,6 +3,7 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + home-manager.url = "github:nix-community/home-manager"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; @@ -11,7 +12,6 @@ outputs = inputs@{ self, nixpkgs, home-manager, ... }: let - pkgs = system: import nixpkgs { inherit system; overlays = [ @@ -19,10 +19,7 @@ ]; config = { allowUnfree = true; }; }; - - in - { - + in { nixosConfigurations = { fedfer-main-laptop-nixos = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; @@ -46,7 +43,6 @@ ./hosts/main-homelab/configuration.nix ]; }; - }; }; }