about summary refs log tree commit diff stats
path: root/bootstrap/install/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-07-01 18:45:39 +0200
committerSoispha <soispha@vhack.eu>2023-07-10 16:44:12 +0200
commitc3d2c88eed96b82fa8e83e8b6ee53c414a0e4431 (patch)
treea5a9553ba5cbf5b6095ae575ecca27356b73c96d /bootstrap/install/default.nix
parentFeat(system/disks): Add luks partition (diff)
downloadnixos-config-c3d2c88eed96b82fa8e83e8b6ee53c414a0e4431.tar.gz
nixos-config-c3d2c88eed96b82fa8e83e8b6ee53c414a0e4431.zip
Refactor(bootstrap): Use disko
Diffstat (limited to 'bootstrap/install/default.nix')
-rw-r--r--bootstrap/install/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/bootstrap/install/default.nix b/bootstrap/install/default.nix
deleted file mode 100644
index 4f520c92..00000000
--- a/bootstrap/install/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-# vim: ts=2
-{
-  pkgs,
-  sysLib,
-  ...
-}: let
-  dependencies = builtins.attrValues {inherit (pkgs) jq dash curl gawk btrfs-progs coreutils libuuid gptfdisk dosfstools toybox nix git;};
-  name = "install";
-  src = ./install.sh;
-in
-  sysLib.writeShellScriptWithLibrary {inherit dependencies name src;}