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, modulesPath,
lib, lib,
pkgs, pkgs,
self,
... ...
}: }:
let
pubKeys = (import "${self}/options/keys.nix").allUser;
in
{ {
imports = [ imports = [
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix") (modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix ./disk-config.nix
../../modules/nix ../../modules/nix
]; ];
boot.loader.grub = { 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; efiSupport = true;
efiInstallAsRemovable = true; efiInstallAsRemovable = true;
}; };
services.openssh.enable = true; services.openssh.enable = true;
environment.systemPackages = map lib.lowPrio [ environment.systemPackages = map lib.lowPrio [
pkgs.curl pkgs.curl
pkgs.gitMinimal
]; ];
users.users.root.openssh.authorizedKeys.keys = [ users.users.root.openssh.authorizedKeys.keys = pubKeys;
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMvPqWPXEUOSMGMIRmirQfbrzq//NkPlEI2TmFpIkSfw" # brontes
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGwlScEmVbdc0EH93XLX+K8yP5FKUKzMf/bWTSO+rMiO" # marr
];
virtualisation.docker = { virtualisation.docker = {
enableOnBoot = true; enableOnBoot = true;