aboutsummaryrefslogtreecommitdiff
path: root/nixos/pc/configuration.nix~
blob: b6fa0a7b812e45e940a2b05bcfe66961062bd356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ inputs, outputs, lib, config, pkgs, ... }: {
  imports = [
    ../general.nix
    inputs.home-manager.nixosModules.home-manager
  ];

  time.timeZone = "Europe/Yekaterinburg";

  services.xserver = {
    enable = true;
  };
}