diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -3,12 +3,14 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - gxctl.url = "git+ssh://git@github.com/grid-x/gxctl"; ghostty.url = "git+ssh://git@github.com/ghostty-org/ghostty"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + + gxctl.url = "git+ssh://git@github.com/grid-x/gxctl"; + edge-tools.url = "git+ssh://git@github.com/grid-x/edge-tools"; }; outputs = inputs @ { @@ -24,7 +26,19 @@ system = "x86_64-linux"; }; in { - "gabrielgio" = home-manager.lib.homeManagerConfiguration { + "gabrielgio@workstation.lan" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + + extraSpecialArgs = { + inherit inputs; + }; + + modules = [ + ./home.nix + ./secrets/gridx/gridx.nix + ]; + }; + "gabrielgio@homestation.lan" = home-manager.lib.homeManagerConfiguration { inherit pkgs; extraSpecialArgs = { |