Files
cnix/system/default.nix

36 lines
499 B
Nix

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