Files
cnix/system/default.nix
2024-08-05 20:11:58 +02:00

36 lines
501 B
Nix

# yes, this is also yanked from, you guessed it, fufexan.
let
shared = [
./bin
./etc
./nix
./srv
./usr/share
./opt/microfetch
];
adampad =
shared
++ [
./bin/android
./srv/blueman
];
cnix =
shared
++ [
./opt/gaming.nix
./opt/android
./opt/agenix
./opt/gimp
./opt/inkscape
./srv/blueman
];
toothpc =
shared
++ [
./opt/gaming.nix
];
in {
inherit shared adampad cnix toothpc;
}