diff --git a/.gitignore b/.gitignore index 3edefbc..a931378 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ result/* +result diff --git a/home/fabric/programs/ssh.nix b/home/fabric/programs/ssh.nix new file mode 100644 index 0000000..4fc5644 --- /dev/null +++ b/home/fabric/programs/ssh.nix @@ -0,0 +1,13 @@ +# home/fabric/programs/ssh.nix +{ + config, + pkgs, + ... +}: { + programs = { + ssh = { + enable = true; + startAgent = true; + }; + }; +} diff --git a/home/fabric/programs/template.nix b/home/fabric/programs/template.nix new file mode 100644 index 0000000..0660f10 --- /dev/null +++ b/home/fabric/programs/template.nix @@ -0,0 +1,9 @@ +# home/fabric/programs/template.nix +{ + config, + pkgs, + ... +}: { + programs = { + }; +}