nixos/hosts/gunter/steamuser.nix

20 lines
418 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;
2024-03-04 03:24:34 +00:00
programs.steam.enable = true;
services.flatpak.enable = true;
2024-03-03 12:06:22 +00:00
users.users.steam = {
isNormalUser = true;
initialPassword = "steam";
home = "/home/steam";
description = "Steam user";
shell = pkgs.zsh;
# Install some user packages
packages = with pkgs; [
];
};
}