nixos/hosts/gunter/steamuser.nix

19 lines
378 B
Nix
Raw Normal View History

2024-03-03 12:06:22 +00:00
{ 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
];
};
}