30 lines
686 B
Nix
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";
|
|
}
|
|
|