-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.nix
78 lines (67 loc) · 1.94 KB
/
system.nix
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{ inputs, config, pkgs,
username, hostname, host, ... }:
let
inherit (import ./hosts/${host}/options.nix)
theLocale theTimezone gitUsername
theShell wallpaperDir wallpaperGit
theLCVariables theKBDLayout flakeDir
theme;
in {
imports =
[
./hosts/${host}/hardware.nix
./config/system
./users/users.nix
];
# Enable networking
networking.hostName = "${hostname}"; # Define your hostname
networking.networkmanager.enable = true;
# Set your time zone
time.timeZone = "${theTimezone}";
# Select internationalisation properties
i18n.defaultLocale = "${theLocale}";
i18n.extraLocaleSettings = {
LC_ADDRESS = "${theLCVariables}";
LC_IDENTIFICATION = "${theLCVariables}";
LC_MEASUREMENT = "${theLCVariables}";
LC_MONETARY = "${theLCVariables}";
LC_NAME = "${theLCVariables}";
LC_NUMERIC = "${theLCVariables}";
LC_PAPER = "${theLCVariables}";
LC_TELEPHONE = "${theLCVariables}";
LC_TIME = "${theLCVariables}";
};
console.keyMap = "${theKBDLayout}";
# Define a user account.
users = {
mutableUsers = true;
};
environment.variables = {
FLAKE = "${flakeDir}";
ZANEYOS_VERSION="1.0";
POLKIT_BIN = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
#EDITOR = "nvim";
};
# Optimization settings and garbage collection automation
nix = {
settings = {
trusted-users = [ "root" "matt"];
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" ];
substituters = [
"https://hyprland.cachix.org"
"https://devenv.cachix.org"
];
trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
system.stateVersion = "24.11";
}