blob: 0150cd6b2711c45a8d5b22e1c1b8453bb790bd1b (
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
27
|
{ config, pkgs, lib, secrets, hostname, inputs, user, ... }: {
imports = [
# Include the results of the hardware scan.
./hardware.nix
];
# Configure keymap in X11
services.xserver.layout = "gb";
# Pick only one of the below networking options.
networking = {
# networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Configure network proxy if necessary
# proxy.default = "http://user:password@proxy:port/";
# proxy.noProxy = "127.0.0.1,localhost,internal.domain";
};
environment.systemPackages = with pkgs;
[
];
environment.etc."nix-index/files".source = inputs.nix-index.legacyPackages.x86_64-linux.database;
}
|