containers: Add srb2 container

Previously I decided against using srb2 in a container due to the poor
performance I experienced. Since I figured out how to use the graphics
from the host inside of the container, performance is no longer an
issue.
This commit is contained in:
Donovan Glover 2023-06-12 20:50:42 -04:00
parent 48c2f322bd
commit 8ce1e73531
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

65
containers/srb2.nix Normal file
View File

@ -0,0 +1,65 @@
{ home-manager, stylix, nixpkgs-srb2, ... }:
let
VARIABLES = import ../src/variables.nix;
in
{
containers.srb2 = {
privateNetwork = true;
ephemeral = true;
autoStart = true;
bindMounts = {
"/home/user/.srb2" = {
hostPath = "/home/${VARIABLES.username}/containers/srb2";
isReadOnly = false;
};
waylandDisplay = rec {
hostPath = "/run/user/1000";
mountPoint = hostPath;
};
x11Display = rec {
hostPath = "/tmp/.X11-unix";
mountPoint = hostPath;
isReadOnly = true;
};
};
config = { pkgs, lib, ... }: {
imports = [
home-manager.nixosModules.home-manager
stylix.nixosModules.stylix
./common/wayland.nix
../modules/fonts
../modules/stylix
];
environment.systemPackages = with pkgs; [
nixpkgs-srb2.legacyPackages.${VARIABLES.system}.srb2
kitty
];
users = {
mutableUsers = false;
allowNoPasswordLogin = true;
users.user = {
isNormalUser = true;
home = "/home/user";
};
};
home-manager.users.user = { ... }: {
home.stateVersion = VARIABLES.stateVersion;
};
environment = {
variables = { TERM = "xterm-kitty"; };
defaultPackages = [ ];
};
system.stateVersion = VARIABLES.stateVersion;
};
};
}