19 lines
378 B
Nix
19 lines
378 B
Nix
{ pkgs, ... }: {
|
|
environment.shells = with pkgs; [ zsh ];
|
|
|
|
services.xserver.desktopManager.xfce.enable = true;
|
|
|
|
users.users.steam = {
|
|
isNormalUser = true;
|
|
initialPassword = "steam";
|
|
home = "/home/steam";
|
|
description = "Steam user";
|
|
shell = pkgs.zsh;
|
|
# Install some user packages
|
|
packages = with pkgs; [
|
|
steam
|
|
steamcmd
|
|
];
|
|
};
|
|
}
|