1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 17:47:57 +00:00

Add pala host

This commit is contained in:
RGBCube 2025-01-08 13:16:27 +03:00
parent ed17966d6f
commit a8275cc97a
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
19 changed files with 183 additions and 657 deletions

24
hosts/pala/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, lib, ... }: with lib; merge
(systemConfiguration {
system.stateVersion = "24.11";
nixpkgs.hostPlatform = "aarch64-linux";
time.timeZone = "Europe/Istanbul";
secrets.saidPassword.file = ./password.said.age;
users.users = {
root.hashedPasswordFile = config.secrets.saidPassword.path;
said = sudoUser (desktopUser {
description = "Said";
hashedPasswordFile = config.secrets.saidPassword.path;
});
};
})
(homeConfiguration {
home.stateVersion = "24.11";
})