chore(tazjin/frog): Enable Docker for Nixery testing

Change-Id: Ia0ffb781fc61f42aa4ad043a6f73fa995eb2c1b5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1434
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Vincent Ambo 2020-07-25 14:38:44 +01:00 committed by tazjin
parent bbbb97e142
commit 2ed0778103

View file

@ -113,7 +113,7 @@ in depot.lib.fix(self: {
# Configure user account
users.extraUsers.tazjin = {
extraGroups = [ "wheel" "audio" ];
extraGroups = [ "wheel" "audio" "docker" ];
isNormalUser = true;
uid = 1000;
shell = nixpkgs.fish;
@ -163,6 +163,12 @@ in depot.lib.fix(self: {
nixpkgs.yubikey-personalization
];
# Enable Docker for Nixery testing
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
services.xserver = {
enable = true;
layout = "us";