nixos/hosts/gunter/steamuser.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
497 B
Nix
Raw Permalink 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;
2024-05-05 20:18:49 +00:00
programs.gamemode.enable = true;
2024-03-04 03:24:34 +00:00
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; [
2024-03-04 07:14:08 +00:00
firefox
mumble
easyeffects
2024-03-03 12:06:22 +00:00
];
};
}