about summary refs log tree commit diff stats
path: root/modules/system/default.nix
blob: 0eef0b7facce479fb7fe2cbebf5d75c8282300bc (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
{config, ...}: let
  cfg = config.soispha;
in {
  imports = [
    ./boot
    ./cleanup
    ./disks
    ./documentation
    ./fonts
    ./hardware
    ./impermanence
    ./locale
    ./networking
    ./polkit
    ./power
    ./secrets
    ./services
    ./sound
    ./tempfiles
    ./users
    ./version
    ./waydroid
  ];
  options = {};
  config = {};
}