26 lines
572 B
Nix
26 lines
572 B
Nix
|
{ tree, config, pkgs, inputs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = with tree;
|
||
|
[
|
||
|
users.chaoticryptidz
|
||
|
profiles.network_manager
|
||
|
profiles.dnscrypt
|
||
|
profiles.sshd
|
||
|
];
|
||
|
|
||
|
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";
|
||
|
}
|
||
|
|