aboutsummaryrefslogtreecommitdiff
path: root/nixos/pc/configuration.nix
blob: 5d15f41fabd0646b19a92177dbde0a2e6d04b358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ inputs, outputs, lib, config, pkgs, ... }: {
  imports = [
    ../general.nix
    ./hardware-configuration.nix
    ../nixosModules/printing.nix
 ];

  time.timeZone = "Asia/Yekaterinburg";
  networking.hostName = "ltrr";

  printing.enable = true;

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

  services.openssh.enable = true;
}