move custom options config to own file and import it in both nixos and home-manager

This commit is contained in:
2026-02-11 18:08:24 +01:00
parent f5df607a4d
commit 52486cdb13
3 changed files with 8 additions and 7 deletions
+1 -2
View File
@@ -6,12 +6,11 @@
{ {
imports = [ imports = [
(import ../base.nix { inherit inputs outputs; }) (import ../base.nix { inherit inputs outputs; })
../../nixos/server/config.nix
]; ];
home = { home = {
username = "leonhard"; username = "leonhard";
homeDirectory = "/home/leonhard"; homeDirectory = "/home/leonhard";
}; };
kekleo.graphical = false;
} }
+6
View File
@@ -0,0 +1,6 @@
{
kekleo.graphical = false;
kekleo.publicKeys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPegeAIABaY9DyWumihNZBlzfdduycvurwYYqoZrdkov2pRVJt8eFhXe+5tdLTKiAq58yzkJ6Zj3CuYb3XuQxX/aDvY4covDXjn1tGKf32xkhTuLd9eDGbFishiC+qROp2/3eZ01DwuttHWo3n/jwOwL3M9mw9Now2i2qaTGuq8wfG5XJ9Cp2+3Ly+mChhtff7Us65dWihNbR3k2WLLvdPJ2HMjeZder0u/IsTTGJj/sytEGt0LPqFOJMl0QuqemkzbeoSAEpVl4huXp5LVT7be2UUmRuekg0p2+EopHunMhUaf7dekiupbKFFNY8aU/eOEZmnakJpOEhcZWaFot825O8jViC9I0NTLazgwttqnZxnuFIp/0Ljf0j7SR/tJa55T0yMH5pyEjw/yvYLplJKbBlPyl2LpsN37l5HKXFtunOsiK/NLL6rLUoTjO5QGCg750c2UKqL8A1g11sW82kscePQTFKbIRmr271ruFWaxnNNh2W5LuJNcUlLf/t/6ps= leonhard"
];
}
+1 -5
View File
@@ -8,6 +8,7 @@
imports = [ imports = [
(import ../base.nix { inherit inputs outputs; }) (import ../base.nix { inherit inputs outputs; })
./hardware-configuration.nix ./hardware-configuration.nix
./config.nix
./dyndns ./dyndns
]; ];
@@ -51,9 +52,4 @@
AllowUsers = [ "leonhard" ]; AllowUsers = [ "leonhard" ];
}; };
}; };
kekleo.graphical = false;
kekleo.publicKeys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDPegeAIABaY9DyWumihNZBlzfdduycvurwYYqoZrdkov2pRVJt8eFhXe+5tdLTKiAq58yzkJ6Zj3CuYb3XuQxX/aDvY4covDXjn1tGKf32xkhTuLd9eDGbFishiC+qROp2/3eZ01DwuttHWo3n/jwOwL3M9mw9Now2i2qaTGuq8wfG5XJ9Cp2+3Ly+mChhtff7Us65dWihNbR3k2WLLvdPJ2HMjeZder0u/IsTTGJj/sytEGt0LPqFOJMl0QuqemkzbeoSAEpVl4huXp5LVT7be2UUmRuekg0p2+EopHunMhUaf7dekiupbKFFNY8aU/eOEZmnakJpOEhcZWaFot825O8jViC9I0NTLazgwttqnZxnuFIp/0Ljf0j7SR/tJa55T0yMH5pyEjw/yvYLplJKbBlPyl2LpsN37l5HKXFtunOsiK/NLL6rLUoTjO5QGCg750c2UKqL8A1g11sW82kscePQTFKbIRmr271ruFWaxnNNh2W5LuJNcUlLf/t/6ps= leonhard@LeonhardsPC"
];
} }