grimm-nixos-laptop/load_common.nix

23 lines
450 B
Nix
Raw Normal View History

2024-03-24 16:59:47 +01:00
{ config, lib, pkgs, ... }:
with lib;
2024-04-10 16:51:28 +02:00
{
2024-03-24 16:59:47 +01:00
options.grimmShared = {
enable = mkEnableOption "grimm-shared-common";
};
imports = [
./common/localisation.nix
./common/printing.nix
./common/portals.nix
./common/network
2024-03-24 16:59:47 +01:00
./common/toolchains.nix
./common/sound
./common/graphics
2024-03-24 16:59:47 +01:00
./common/gaming.nix
./common/firefox.nix
2024-03-26 10:36:33 +01:00
./common/cloudsync.nix
2024-04-13 19:16:33 +02:00
./common/security.nix
2024-04-18 21:16:40 +02:00
./common/laptop_hardware.nix
2024-03-24 16:59:47 +01:00
];
}