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:
parent
bbbb97e142
commit
2ed0778103
1 changed files with 7 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue