diff options
Diffstat (limited to 'hosts/akashi/default.nix')
| -rw-r--r-- | hosts/akashi/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hosts/akashi/default.nix b/hosts/akashi/default.nix new file mode 100644 index 0000000..caa1543 --- /dev/null +++ b/hosts/akashi/default.nix @@ -0,0 +1,20 @@ +{ + self, + ... +}: +{ + imports = [ + ./hardware-configuration.nix + "${self}/modules/core" + "${self}/modules/laptop" + "${self}/modules/options" + "${self}/modules/pc" + ]; + + config = { + modules.nix.extend = false; + system.stateVersion = "24.05"; + networking.hostName = "akashi"; + services.openssh.settings.PermitRootLogin = "yes"; + }; +} |