mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2025-08-03 16:50:24 -04:00
add: ssh agent
This commit is contained in:
parent
1acc74fdf6
commit
f76abc07ce
3 changed files with 23 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
result/*
|
||||
result
|
||||
|
|
13
home/fabric/programs/ssh.nix
Normal file
13
home/fabric/programs/ssh.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
# home/fabric/programs/ssh.nix
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs = {
|
||||
ssh = {
|
||||
enable = true;
|
||||
startAgent = true;
|
||||
};
|
||||
};
|
||||
}
|
9
home/fabric/programs/template.nix
Normal file
9
home/fabric/programs/template.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
# home/fabric/programs/template.nix
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs = {
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue