19 lines
368 B
Nix
19 lines
368 B
Nix
|
{ pkgs, modulesPath, ... }: {
|
||
|
imports = [ (modulesPath + "/profiles/minimal.nix") ];
|
||
|
|
||
|
ps4.enable = true;
|
||
|
|
||
|
users.users.nixos = {
|
||
|
isNormalUser = true;
|
||
|
password = "nixos";
|
||
|
extraGroups = [ "wheel" ];
|
||
|
};
|
||
|
|
||
|
services.getty.autologinUser = "nixos";
|
||
|
|
||
|
users.defaultUserShell = pkgs.fish;
|
||
|
programs.fish.enable = true;
|
||
|
|
||
|
system.stateVersion = "25.05";
|
||
|
}
|