feat: added recovery nixos config

This commit is contained in:
2026-07-18 23:21:30 +01:00
parent 4da3b6c50f
commit 0a7e26455d
3 changed files with 117 additions and 0 deletions
@@ -0,0 +1,33 @@
{
den,
modules,
inputs,
...
}:
{
den.aspects.doloro-bootable = {
includes = [
<den/primary-user>
den.aspects.doloro-shared
modules.nixvim
];
homeManager = {
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
btrfs-progs
chntpw
ddrescue
fd
gpart
ntfs3g
parted
ranger
rsync
testdisk
];
};
};
}