diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ee7df0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vars/* \ No newline at end of file diff --git a/flake.nix b/flake.nix index 2ff62f8..f4072b3 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ "x86_64-linux" ]; inherit (nixpkgs) lib; - configVars = import ./vars { inherit inputs lib; }; + configVars = import /home/willifan/.nix-config/vars { inherit inputs lib; }; specialArgs = { inherit inputs outputs configVars nixpkgs; }; in { diff --git a/vars/default.nix b/vars/default.nix deleted file mode 100644 index 3312995..0000000 --- a/vars/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ ... }: -{ - username = "willifan"; - hostname = "Puenktchen"; - email = "willifan@proton.me"; -}