another one

This commit is contained in:
cnst
2024-08-03 14:03:54 +02:00
parent 2b2136dfba
commit e1f070d81a
62 changed files with 56 additions and 72 deletions

32
system/default.nix Normal file
View File

@@ -0,0 +1,32 @@
let
shared = [
./bin
./etc
./nix
./srv
./usr/share
];
adampad =
shared
++ [
./bin/android
./srv/blueman
];
cnix =
shared
++ [
./usr/bin/gaming.nix
./usr/bin/android
./usr/bin/gimp
./usr/bin/inkscape
./srv/blueman
];
toothpc =
shared
++ [
./usr/bin/gaming.nix
];
in {
inherit shared adampad cnix toothpc;
}