21 lines
335 B
Nix
21 lines
335 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./state.nix
|
|
./systemd.nix
|
|
./plymouth.nix
|
|
./sddm.nix
|
|
./hardware.nix
|
|
./audio.nix
|
|
./bluetooth.nix
|
|
./network.nix
|
|
./browser.nix
|
|
./impermanence.nix
|
|
./makima.nix
|
|
];
|
|
|
|
time.timeZone = lib.mkDefault config.nomarchy.system.timezone;
|
|
}
|