diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-22 10:23:58 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-22 10:24:06 -0500 |
| commit | 35af4bab99da94845ebd6e9b2efae6a544d39b35 (patch) | |
| tree | 47c6f76b47f1012932729c9f693316df1512197a /tmux-tsunami/flake.nix | |
| parent | 2e0c6ccbbc76cc36e92128aea44e4bdd4e5c3d0a (diff) | |
LOTS OF TEMP STUFF
Diffstat (limited to 'tmux-tsunami/flake.nix')
| -rw-r--r-- | tmux-tsunami/flake.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tmux-tsunami/flake.nix b/tmux-tsunami/flake.nix new file mode 100644 index 0000000..e74feb7 --- /dev/null +++ b/tmux-tsunami/flake.nix @@ -0,0 +1,18 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs"; + nix-std.url = "github:chessai/nix-std"; + }; + outputs = inputs: { + hjemModules.tsunami = import ./modules/hjem.nix { + std = inputs.nix-std.lib; + }; + + packages."x86_64-linux".tsunamiInstaller = let + installer = import ./modules/installer.nix { + pkgs = import inputs.nixpkgs {system = "x86_64-linux";}; + }; + in + installer.mkInstaller; + }; +} |
