Files
dotfiles/hosts/remilia/default.nix
2023-03-08 07:57:01 +05:30

22 lines
340 B
Nix

{ config, pkgs, ... }:
{
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" ];
};
system.stateVersion = "21.11";
}