Files
cnix/nixos/default.nix
2024-08-01 19:11:01 +02:00

38 lines
556 B
Nix

let
shared = [
./core
./locale
./services/audio
./services/greetd
./services/gnome-keyring
./services/gvfs
./services/locate
./services/mullvad
./services/openssh
./services/power
./services/samba
./services/udisks
./services/fwupd
];
adampad =
shared
++ [
./core/system/adampad-nh.nix
];
cnix =
shared
++ [
./core/system/cnix-nh.nix
];
toothpc =
shared
++ [
./core/system/toothpc-nh.nix
];
in {
inherit shared adampad cnix toothpc;
}