Files
dotfiles/hosts/remilia/default.nix
2023-07-26 18:03:20 +05:30

24 lines
438 B
Nix

{ config, pkgs, lib', ... }:
{
imports = [
./networking.nix
./hardware.nix
./boot.nix
./services.nix
./mailserver.nix
];
time.timeZone = "Asia/Kolkata";
users.users.bat = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/bat";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = lib'.network.commonSSHKeys;
};
programs.zsh.enable = true;
system.stateVersion = "21.11";
}