feat: add toggle to ssh
This commit is contained in:
parent
fde8282dd6
commit
637e768561
3 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
|||
{
|
||||
{ lib, config, ... }:
|
||||
let
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
mkIf config.programs.ssh.enable {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
addKeysToAgent = "confirm";
|
||||
matchBlocks = {
|
||||
deck = {
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
|
||||
programs = {
|
||||
waybar.enable = true;
|
||||
ssh.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
ssh.enable = true;
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
Loading…
Add table
Reference in a new issue