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