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/networking.nix
|
|
|
|
./common/toolchains.nix
|
|
|
|
./common/sound.nix
|
|
|
|
./common/opengl.nix
|
|
|
|
./common/gaming.nix
|
|
|
|
./common/firefox.nix
|
|
|
|
./common/sway.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-16 12:25:00 +02:00
|
|
|
./common/qt.nix
|
2024-04-16 13:38:31 +02:00
|
|
|
./common/spotify.nix
|
2024-04-18 21:16:40 +02:00
|
|
|
./common/laptop_hardware.nix
|
2024-03-24 16:59:47 +01:00
|
|
|
];
|
|
|
|
}
|