nixfiles/hosts/pinetab/pinetab.nix

26 lines
572 B
Nix
Raw Normal View History

2021-12-27 14:26:22 +00:00
{ 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";
}