mirror of
https://github.com/RGBCube/ncc
synced 2025-09-13 17:47:57 +00:00
Add pala host
This commit is contained in:
parent
ed17966d6f
commit
a8275cc97a
19 changed files with 183 additions and 657 deletions
24
hosts/pala/default.nix
Normal file
24
hosts/pala/default.nix
Normal 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";
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue