hosts/vamos: set global vars

This commit is contained in:
Anthony Rodriguez 2024-12-18 09:24:30 +01:00
parent 8338818b7d
commit 96425172a0
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -6,6 +6,16 @@
system = "${inputs.self}/system"; system = "${inputs.self}/system";
home = "${inputs.self}/home"; home = "${inputs.self}/home";
in { in {
local.systemVars = {
hostName = "vamos";
username = "nezia";
};
local.homeVars = {
fullName = "Anthony Rodriguez";
email = "anthony@nezia.dev";
};
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./modules ./modules
@ -50,6 +60,5 @@ in {
extraSpecialArgs = specialArgs; extraSpecialArgs = specialArgs;
}; };
networking.hostName = "vamos";
environment.variables.FLAKE = "/home/nezia/.dotfiles"; environment.variables.FLAKE = "/home/nezia/.dotfiles";
} }