diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2024-10-02 22:37:06 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2024-10-02 22:37:06 -0500 |
commit | 9d1b3f23a64506988608143f4bca8ab4c5141d3e (patch) | |
tree | 0955588a5f4bcb3f802b6398a537a83cdb0091e0 /flake.nix | |
parent | 4730b215fdc4095800fedfdf690c12fec994bb6b (diff) | |
download | nixos-9d1b3f23a64506988608143f4bca8ab4c5141d3e.tar.xz nixos-9d1b3f23a64506988608143f4bca8ab4c5141d3e.zip |
update moreee
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -19,10 +19,18 @@ let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; + userDetails = { + username = "timmy"; + email = "tjkeller.xyz"; + fullname = "Tim Keller"; + }; in { nixosConfigurations.T430 = nixpkgs.lib.nixosSystem { inherit system; - specialArgs = { inherit inputs; }; + specialArgs = { + inherit inputs; + inherit userDetails; + }; modules = [ ./modules/hosts/T430/configuration.nix ./modules/root @@ -31,6 +39,9 @@ homeConfigurations.timmy = home-manager.lib.homeManagerConfiguration { inherit pkgs; + extraSpecialArgs = { + inherit userDetails; + }; modules = [ ./modules/home inputs.arkenfox.hmModules.arkenfox |