nixfiles/hosts/pinetab/pinetab.nix
2021-12-27 14:26:22 +00:00

30 lines
686 B
Nix

{ tree, config, pkgs, inputs, lib, ... }:
{
imports = with tree;
[
users.chaoticryptidz
profiles.network_manager
profiles.dnscrypt
profiles.sshd
] ++ [
import
"${inputs.mobile-nixos}/lib/configuration.nix"
{ device = "pine64-pinetab"; }
];
users.users.root.password = "nixos";
services.openssh.permitRootLogin = lib.mkForce "yes";
home-manager.users.root = { imports = with tree; [ home.base ]; };
home-manager.users.chaoticryptidz = {
imports = with tree; [ home.base home.dev home.network_manager ];
};
networking.hostName = "pinetab";
time.timeZone = "Europe/London";
system.stateVersion = "21.11";
}