34 lines
450 B
Nix
34 lines
450 B
Nix
{
|
|
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
|
|
];
|
|
};
|
|
};
|
|
}
|