]> Repositories - machines.git/blobdiff - levanter/configuration.nix
Add words to spell check
[machines.git] / levanter / configuration.nix
index 79ff33082f7956a915681aae4577f62fa35a7448..61c0a2c5b66a11e01765a44cb353376977befbf8 100644 (file)
@@ -1,8 +1,10 @@
-{ device, hostname, ... }: {
+{ device, hostname, ayo_public_key, ... }: {
        imports = [
                ./hardware-configuration.nix
                ./disko.nix
+               ./caddy.nix
                ./komuhn-website.nix
+               ./git-server.nix
        ];
 
        boot.loader.grub = {
                users."ayo" = {
                        isNormalUser = true;
                        extraGroups = [ "wheel" ];
-
-                       openssh.authorizedKeys.keys = [
-                               "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIeBrQONJC4u4M0/gYhsMMcVxs+mVlk5bmT7vtReEyK7 ayo@monsoon"
-                       ];
+                       openssh.authorizedKeys.keys = [ ayo_public_key ];
                };
        };
 
        system.stateVersion = "26.05";
-       nix.settings.trusted-users = [ "ayo" ];
+
+       nix.settings = {
+               trusted-users = [ "ayo" ];
+               experimental-features = [ "nix-command" "flakes" ];
+       };
 }