blob: e06f175fc3158993affe66711cec45428f20bc0f (
plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
{ pkgs, lib, ... }:
{
documentation = {
enable = true;
man.enable = true;
dev.enable = true;
};
environment = {
etc = {
securetty.text = ''
# /etc/securetty: list of terminals on which root is allowed to login.
# See securetty(5) and login(1).
'';
};
};
networking = {
hostName = "iso";
wireless.enable = lib.mkForce false;
networkmanager = {
enable = true;
# wifi.macAddress = "";
};
firewall = {
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
};
hardware = {
cpu.intel.updateMicrocode = true;
graphics = {
enable = true;
};
pulseaudio.enable = false;
};
services = {
qemuGuest.enable = true;
chrony = {
enable = true;
enableNTS = true;
servers = [ "time.cloudflare.com" "ptbtime1.ptb.de" "ptbtime2.ptb.de" ];
};
jitterentropy-rngd.enable = true;
resolved.dnssec = true;
dbus = {
apparmor = "enabled";
};
pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
jack.enable = true;
wireplumber.enable = true;
extraConfig.pipewire-pulse."92-low-latency" = {
"context.properties" = [
{
name = "libpipewire-module-protocol-pulse";
args = { };
}
];
"pulse.properties" = {
"pulse.min.req" = "32/48000";
"pulse.default.req" = "32/48000";
"pulse.max.req" = "32/48000";
"pulse.min.quantum" = "32/48000";
"pulse.max.quantum" = "32/48000";
};
"stream.properties" = {
"node.latency" = "32/48000";
"resample.quality" = 1;
};
};
};
openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
AllowUsers = [ "nixos" ];
PermitRootLogin = "yes";
KbdInteractiveAuthentication = false;
};
};
};
programs = {
zsh.enable = true;
ssh.enableAskPassword = false;
};
nixpkgs.config = {
allowUnfree = true;
cudaSupport = false;
};
environment.systemPackages = with pkgs; [
cryptsetup
restic
sbctl
linux-manual
man-pages
man-pages-posix
];
users.extraUsers.root.password = "nixos";
users.extraUsers.nixos.password = "nixos";
users.users = {
nixos = {
isNormalUser = true;
description = "NixOS";
extraGroups = [ "networkmanager" "wheel" "video" "docker" "jackaudio" "tss" "dialout" ];
shell = pkgs.zsh;
packages = with pkgs; [
git
curl
gum
(writeShellScriptBin "nix_installer"
''
#!/usr/bin/env bash
set -euo pipefail
if [ "$(id -u)" -eq 0 ]; then
echo "ERROR! $(basename "$0") should be run as a regular user"
exit 1
fi
if [ ! -d "$HOME/toughnix/" ]; then
cd $HOME
git clone https://git.nullring.xyz/toughnix.git
fi
vim "$HOME/toughnix/desktop/vars.nix"
vim "$HOME/toughnix/desktop/sda-simple.nix"
sudo nix --experimental-features "nix-command flakes" run github:nix-community/disko/latest -- --mode destroy,format,mount "$HOME/toughnix/disko/sda-simple.nix"
cd /mnt
sudo nixos-install --flake $HOME/toughnix#continuity
'')
];
};
};
nix.settings.experimental-features = "nix-command flakes";
time.timeZone = "America/Vancouver";
i18n.defaultLocale = "en_CA.UTF-8";
systemd = {
services.sshd.wantedBy = pkgs.lib.mkForce ["multi-user.target"];
targets = {
sleep.enable = false;
suspend.enable = false;
hibernate.enable = false;
hybrid-sleep.enable = false;
};
};
system = {
stateVersion = "24.11";
};
}
|