diff options
| author | Baitinq <[email protected]> | 2022-07-24 12:11:57 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-24 12:11:57 +0200 |
| commit | c63df12c2abc0e695a4a6688326f7291fd724533 (patch) | |
| tree | 5c20ae0d5c8ab54dde5719283b1a41bd7b5222ef /flake.nix | |
| parent | Added Wallpapers as flake input (diff) | |
| download | nixos-config-c63df12c2abc0e695a4a6688326f7291fd724533.tar.gz nixos-config-c63df12c2abc0e695a4a6688326f7291fd724533.tar.bz2 nixos-config-c63df12c2abc0e695a4a6688326f7291fd724533.zip | |
Move user declaration outside flake.nix
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix index 4aa6f6e..902324e 100644 --- a/flake.nix +++ b/flake.nix @@ -22,12 +22,10 @@ }; outputs = inputs @ { self, nixpkgs, home-manager, ... }: - let user = "baitinq"; - in { nixosConfigurations = import ./hosts { inherit (nixpkgs) lib; - inherit inputs nixpkgs home-manager user; + inherit inputs nixpkgs home-manager; }; }; } |