grimm-nixos-laptop/common/default.nix

23 lines
323 B
Nix
Raw Permalink Normal View History

2024-05-11 22:55:59 +02:00
{ lib, ... }:
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-05-25 21:50:51 +02:00
./databases
2024-04-30 12:32:03 +02:00
];
}