tangled
alpha
login
or
join now
karitham.dev
/
dotfiles
0
fork
atom
a dotfile but it's really big
0
fork
atom
overview
issues
pulls
pipelines
reg: remove helix
karitham.dev
2 months ago
fbfddea4
a83f517a
+3
-11
1 changed file
expand all
collapse all
unified
split
systems
reg
default.nix
+3
-11
systems/reg/default.nix
···
1
1
-
{
2
2
-
config,
3
3
-
pkgs,
4
4
-
inputs,
5
5
-
...
6
6
-
}:
1
1
+
{ config, inputs, ... }:
7
2
{
8
3
my.username = "root";
9
4
···
17
12
boot.tmp.cleanOnBoot = true;
18
13
zramSwap.enable = true;
19
14
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
15
15
+
20
16
services.atuin = {
21
17
enable = true;
22
18
host = "0.0.0.0";
23
19
};
24
20
25
25
-
users.users = {
26
26
-
${config.my.username}.openssh.authorizedKeys.keyFiles = [ inputs.ssh-keys ];
27
27
-
};
28
28
-
29
29
-
environment.systemPackages = with pkgs; [ helix ];
21
21
+
users.users.${config.my.username}.openssh.authorizedKeys.keyFiles = [ inputs.ssh-keys ];
30
22
31
23
system.stateVersion = "25.05";
32
24
}