diff options
author | Soispha <soispha@vhack.eu> | 2023-07-01 18:45:39 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-10 16:44:12 +0200 |
commit | c3d2c88eed96b82fa8e83e8b6ee53c414a0e4431 (patch) | |
tree | a5a9553ba5cbf5b6095ae575ecca27356b73c96d /bootstrap/install/default.nix | |
parent | Feat(system/disks): Add luks partition (diff) | |
download | nixos-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.nix | 11 |
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;} |