Files
dotfiles/hosts/marisa/default.nix
2025-06-29 19:49:39 +05:30

26 lines
394 B
Nix

{
config,
pkgs,
conf,
...
}:
{
imports = [
./networking.nix
./hardware.nix
./boot.nix
./services
];
users.users.spark = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/spark";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = conf.network.commonSSHKeys;
};
time.timeZone = "Asia/Kolkata";
system.stateVersion = "21.05";
}