tangled
alpha
login
or
join now
encode42.dev
/
nixos
0
fork
atom
Personal-use NixOS configuration
0
fork
atom
overview
issues
pulls
pipelines
Split Yubikey configuration into server module
encode42.dev
1 week ago
077146d0
69eef688
+10
-1
2 changed files
expand all
collapse all
unified
split
config
server
yubikey.nix
hosts
index
users
encode42.nix
+9
config/server/yubikey.nix
···
1
1
+
{
2
2
+
programs.gnupg.agent = {
3
3
+
enable = true;
4
4
+
5
5
+
settings = {
6
6
+
no-autostart = true;
7
7
+
};
8
8
+
};
9
9
+
}
+1
-1
hosts/index/users/encode42.nix
···
7
7
imports = [
8
8
(flakeRoot + /users/encode42/common)
9
9
10
10
-
(flakeRoot + /config/common/yubikey.nix)
10
10
+
(flakeRoot + /config/server/yubikey.nix)
11
11
];
12
12
13
13
home-manager.users.encode42 = {