this repo has no description
1{
2 modulesPath,
3 lib,
4 pkgs,
5 ...
6} @ args:
7{
8 imports = [
9 (modulesPath + "/installer/scan/not-detected.nix")
10 (modulesPath + "/profiles/qemu-guest.nix")
11 ./disk-config.nix
12 ];
13 boot.loader.grub = {
14 # no need to set devices, disko will add all devices that have a EF02 partition to the list already
15 # devices = [ ];
16 efiSupport = true;
17 efiInstallAsRemovable = true;
18 };
19 services.openssh.enable = true;
20
21 environment.systemPackages = map lib.lowPrio [
22 pkgs.curl
23 pkgs.gitMinimal
24 pkgs.wget
25 ];
26
27 users.users.root.openssh.authorizedKeys.keys =
28 [
29 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuC5sHe8hegmrgEKntLTArMn/O6m8IOKHxtgAsHHcF1 mar.kimmina@gmail.com"
30 ];
31
32 system.stateVersion = "24.05";
33}