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

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

  # Printing
  services = {
    printing.enable = true;
    printing.drivers = [ pkgs.hplipWithPlugin ];
    avahi = {
      enable = true;
      nssmdns = true;
      openFirewall = true;
    };
  };
}