This commit is contained in:
2024-02-29 13:20:13 +01:00
parent b8f1a62bdd
commit b2d3cc4e4f
4 changed files with 26 additions and 30 deletions

View File

@@ -3,6 +3,7 @@
{
imports = [
./programs
./services
];
home = {
username = "elias";
@@ -20,6 +21,7 @@
lm_sensors
# extras
openssh
betterbird
bitwarden
# dropbox

View File

@@ -0,0 +1,5 @@
{
imports = [
./ssh-agent.nix
];
}

View File

@@ -0,0 +1,8 @@
{ ... }:
{
services.ssh-agent = {
enable = true;
};
}