27 lines
574 B
Nix
27 lines
574 B
Nix
{pkgs, ...}: {
|
|
e11sync.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
tmux
|
|
htop
|
|
];
|
|
|
|
nix.extraOptions = ''experimental-features = nix-command flakes'';
|
|
users = {
|
|
mutableUsers = false;
|
|
users.nixos = {
|
|
extraGroups = ["wheel"];
|
|
isNormalUser = true;
|
|
hashedPassword = "";
|
|
};
|
|
};
|
|
virtualisation.graphics = false;
|
|
security.sudo.wheelNeedsPassword = false;
|
|
services.getty.autologinUser = "nixos";
|
|
networking = {
|
|
hostName = "vm";
|
|
firewall.allowedTCPPorts = [22 8001];
|
|
};
|
|
system.stateVersion = "23.11";
|
|
}
|