aboutsummaryrefslogtreecommitdiff
path: root/modules/system/security
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-02 08:03:36 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-02 08:03:36 -0700
commit7aa912237697c08537688cc4d13d75bff819f7aa (patch)
tree646be15680ccec130463e5c66da65a5cf0a0f403 /modules/system/security
parentprofiles/workstation: add font configurations (diff)
downloadinfra-7aa912237697c08537688cc4d13d75bff819f7aa.tar.gz
profiles/default: more consolidation
Diffstat (limited to '')
-rw-r--r--modules/system/security/default.nix8
-rw-r--r--modules/system/security/ssh.nix17
2 files changed, 0 insertions, 25 deletions
diff --git a/modules/system/security/default.nix b/modules/system/security/default.nix
deleted file mode 100644
index debcd9e..0000000
--- a/modules/system/security/default.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ ... }:
-
-{
- imports = [ ./ssh.nix ];
-
- security.sudo.wheelNeedsPassword = false;
- security.polkit.enable = true;
-}
diff --git a/modules/system/security/ssh.nix b/modules/system/security/ssh.nix
deleted file mode 100644
index 14cbf5d..0000000
--- a/modules/system/security/ssh.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ ... }:
-
-{
- programs.ssh = {
- # $ ssh-keyscan example.com
- knownHosts = {
- github = {
- hostNames = [ "github.com" ];
- publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
- };
- rsync = {
- hostNames = [ "de2664.rsync.net" ];
- publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIObQN4P/deJ/k4P4kXh6a9K4Q89qdyywYetp9h3nwfPo";
- };
- };
- };
-}