From 056e06370851d2130fff3de7aba5d9a24606d15e Mon Sep 17 00:00:00 2001 From: FredzyW Date: Mon, 23 Sep 2024 13:21:58 +0200 Subject: [PATCH] La till Disas laptop --- flake.nix | 6 +++--- shared/ssh.nix | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 5ee5de2..7d81f70 100644 --- a/flake.nix +++ b/flake.nix @@ -27,19 +27,19 @@ overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { inherit system; - config.allowUnfree = true; + config.allowUnfree = false; }; }; overlay-fw-pkgs = final: prev: { fw-pkgs = import fw-pkgs { inherit system; - config.allowUnfree = true; + config.allowUnfree = false; }; }; overlay-knock = final: prev: { knock = import knock { inherit system; - config.allowUnfree = true; + config.allowUnfree = false; }; }; in { diff --git a/shared/ssh.nix b/shared/ssh.nix index 0d4f7f1..ff42ec6 100644 --- a/shared/ssh.nix +++ b/shared/ssh.nix @@ -67,6 +67,12 @@ port = 22; user = "root"; }; + "disa" = { + hostname = "192.168.1.242"; + port = 22; + user = "disah"; + identityFile = "/home/fw/.ssh/id_rsa"; + }; }; }; }