28 current 2024-04-17 20:41:39 23.11.20240405.72da83d 6.1.84 *

This commit is contained in:
2024-04-17 20:41:48 +02:00
parent 33a71256cd
commit b08d3439a0
4 changed files with 57 additions and 1 deletions

View File

@@ -2,10 +2,11 @@
config,
pkgs,
...
}: {
}: rec {
imports = [
./firefox.nix
./plasma.nix
./ssh.nix
./yubikey.nix
];
@@ -14,6 +15,10 @@
home.username = "jonas";
home.homeDirectory = "/home/jonas";
sops = {
age.keyFile = "${home.homeDirectory}/.config/sops/keys.txt";
};
xdg.mimeApps = {
enable = true;

11
home/jonas/ssh.nix Normal file
View File

@@ -0,0 +1,11 @@
{
config,
pkgs,
...
}: rec {
sops.secrets."ssh/config" = {
sopsFile = ../../secrets/jonas/ssh.yaml;
key = "config";
path = "${config.home.homeDirectory}/.ssh/config";
};
}