From e1073ed29ce1d5733dc2ea256661c06ba70aee34 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Fri, 15 Dec 2023 23:00:47 +0100 Subject: [PATCH] fix --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 17e4f91..b508f7c 100644 --- a/flake.nix +++ b/flake.nix @@ -36,8 +36,7 @@ }; }; - outputs = - { nixpkgs, self, ...} @ inputs: + outputs = { nixpkgs, self, ...} @ inputs: let selfPkgs = import ./pkgs; username = "frostphoenix"; @@ -45,7 +44,7 @@ { overlays.default = selfPkgs.overlay; nixosConfigurations = import ./modules/core/default.nix { - inherit self nixpkgs inputs; + inherit self nixpkgs inputs username; }; }; }