stockholm/modules/lass/games.nix

26 lines
468 B
Nix
Raw Normal View History

2015-04-10 01:37:29 +02:00
{ config, pkgs, ... }:
2015-04-12 20:04:25 +02:00
let
mainUser = config.users.extraUsers.mainUser;
in {
2015-04-10 01:37:29 +02:00
environment.systemPackages = with pkgs; [
dwarf_fortress
];
users.extraUsers = {
games = {
name = "games";
description = "user playing games";
home = "/home/games";
extraGroups = [ "audio" ];
createHome = true;
useDefaultShell = true;
};
};
security.sudo.extraConfig = ''
2015-04-12 20:04:25 +02:00
${mainUser.name} ALL=(games) NOPASSWD: ALL
2015-04-10 01:37:29 +02:00
'';
}