feat: rename styrak to shan

This commit is contained in:
Nydragon 2024-09-22 00:40:48 +02:00
parent 18161231cc
commit 4a4ca8c135
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 6 additions and 8 deletions

View file

@ -2,32 +2,30 @@
modulesPath,
lib,
pkgs,
self,
...
}:
let
pubKeys = (import "${self}/options/keys.nix").allUser;
in
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix
../../modules/nix
];
boot.loader.grub = {
# no need to set devices, disko will add all devices that have a EF02 partition to the list already
# devices = [ ];
efiSupport = true;
efiInstallAsRemovable = true;
};
services.openssh.enable = true;
environment.systemPackages = map lib.lowPrio [
pkgs.curl
pkgs.gitMinimal
];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw" # brontes
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGwlScEmVbdc0EH93XLX+K8yP5FKUKzMf/bWTSO+rMiO" # marr
];
users.users.root.openssh.authorizedKeys.keys = pubKeys;
virtualisation.docker = {
enableOnBoot = true;