flocon/system/default.nix

29 lines
388 B
Nix

let
common = [
./core
./hardware/printing.nix
./hardware/fwupd.nix
./network
./programs
./services
];
desktop =
common
++ [
./hardware/uni-sync.nix
];
laptop =
common
++ [
./hardware/fprintd.nix
./services/power.nix
./services/brightness.nix
./services/keyd.nix
];
in {
inherit desktop laptop;
}