diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-24 12:11:57 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-24 12:11:57 +0200 |
commit | de4dc57ca76ec543e36a6d7440493bd31730d7ca (patch) | |
tree | 0f0b70c67ad7642f6e0fc4fc712f472bb4dbf989 /hosts | |
parent | Added Wallpapers as flake input (diff) | |
download | nixos-config-de4dc57ca76ec543e36a6d7440493bd31730d7ca.tar.gz nixos-config-de4dc57ca76ec543e36a6d7440493bd31730d7ca.tar.bz2 nixos-config-de4dc57ca76ec543e36a6d7440493bd31730d7ca.zip |
Move user declaration outside flake.nix
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index d249bcb..9c23363 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -1,5 +1,7 @@ -{ user, lib, nixpkgs, inputs, home-manager, ... }: +{ lib, nixpkgs, inputs, home-manager, ... }: let + user = "baitinq"; + secrets = import ../secrets; hosts = [ |