grimm-nixos-laptop/common/default.nix

27 lines
329 B
Nix
Raw Normal View History

2024-05-07 23:31:41 +02:00
{
config,
lib,
pkgs,
...
}:
2024-04-30 12:32:03 +02:00
with lib;
{
options.grimmShared = {
enable = mkEnableOption "grimm-shared-common";
};
imports = [
./localisation.nix
./printing.nix
./xdg
./network
./tooling
./sound
./graphics
./gaming.nix
./firefox.nix
./cloudsync.nix
2024-04-30 22:04:17 +02:00
./hardware
2024-04-30 12:32:03 +02:00
];
}