20 lines
397 B
Nix
20 lines
397 B
Nix
{ pkgs, ... }: {
|
|
networking.hostName = "jupiter";
|
|
system.stateVersion = "25.04";
|
|
time.timeZone = "America/Vancouver";
|
|
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit (pkgs) vim;
|
|
};
|
|
|
|
users.users = {
|
|
admin = {
|
|
isNormalUser = true;
|
|
uid = 1000;
|
|
extraGroups = [ "wheel" ];
|
|
initialPassword = "test";
|
|
};
|
|
};
|
|
|
|
security.rtkit.enable = true;
|
|
}
|