From 718a39e1426d7901e20923886922d8fd49795593 Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Fri, 22 Nov 2024 20:27:08 +0100 Subject: [PATCH] Remove modes on files --- systems/base/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/systems/base/configuration.nix b/systems/base/configuration.nix index ddab5aa..7e1688e 100644 --- a/systems/base/configuration.nix +++ b/systems/base/configuration.nix @@ -80,12 +80,12 @@ files = [ "/etc/machine-id" # SSH Server - { file = "/etc/ssh/ssh_host_ed25519_key"; mode = "0600"; } - { file = "/etc/ssh/ssh_host_ed25519_key.pub"; mode = "0644"; } - { file = "/etc/ssh/ssh_host_rsa_key"; mode = "0600"; } - { file = "/etc/ssh/ssh_host_rsa_key.pub"; mode = "0644"; } + "/etc/ssh/ssh_host_ed25519_key" + "/etc/ssh/ssh_host_ed25519_key.pub" + "/etc/ssh/ssh_host_rsa_key" + "/etc/ssh/ssh_host_rsa_key.pub" # Ceph Client - { file = "/etc/ceph/ceph.conf"; mode = "0644"; } + "/etc/ceph/ceph.conf" ]; };