Merge branch 'orangepi5plus'
This commit is contained in:
53
hosts/op5p/configuration.nix
Normal file
53
hosts/op5p/configuration.nix
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
#self,
|
||||
#lib,
|
||||
#pkgs,
|
||||
myData,
|
||||
#config,
|
||||
#modulesPath,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../shared/platform/orangepi5.nix
|
||||
];
|
||||
|
||||
users.users = {
|
||||
motiejus = {
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "video"];
|
||||
initialHashedPassword = "";
|
||||
openssh.authorizedKeys.keys = [myData.people_pubkeys.motiejus];
|
||||
};
|
||||
root.initialHashedPassword = "";
|
||||
};
|
||||
|
||||
security = {
|
||||
pam.services.lightdm.text = ''
|
||||
auth sufficient pam_succeed_if.so user ingroup wheel
|
||||
'';
|
||||
sudo = {
|
||||
enable = true;
|
||||
wheelNeedsPassword = false;
|
||||
};
|
||||
};
|
||||
|
||||
networking = {
|
||||
hostName = "op5p";
|
||||
domain = "jakstys.lt";
|
||||
firewall.allowedTCPPorts = [22];
|
||||
};
|
||||
|
||||
nix = {
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
trusted-users = nixos
|
||||
'';
|
||||
settings = {
|
||||
experimental-features = ["nix-command" "flakes"];
|
||||
trusted-users = ["motiejus"];
|
||||
};
|
||||
};
|
||||
|
||||
time.timeZone = "UTC";
|
||||
system.stateVersion = "23.11";
|
||||
}
|
||||
Reference in New Issue
Block a user