summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-15 06:54:33 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-15 06:54:33 -0500
commit8b990276c5e9abccd772694b1f7232d8b49b634c (patch)
tree23f4c3713c538f435354270de2005475c50955d0 /flake.nix
initial commit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..e74feb7
--- /dev/null
+++ b/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;
+ };
+}