about summary refs log tree commit diff stats
path: root/modules/system/default.nix
blob: 85f8dfb3fc122e5916b295f5c8af400a056214b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{config, ...}: let
  cfg = config.soispha;
in {
  imports = [
    ./bluetooth
    ./boot
    ./cleanup
    ./disks
    ./documentation
    ./fonts
    ./hardware
    ./home-manager
    ./impermanence
    ./laptop
    ./locale
    ./networking
    ./nixpkgs
    ./polkit
    ./power
    ./secrets
    ./services
    ./sound
    ./tempfiles
    ./users
    ./version
    ./waydroid
  ];
  options = {};
  config = {};
}