forked from extern/nix-config
255a819504
Now I don't have to wait for anything to be included in nixos-unstable and can simply merge whatever I want whenever I want. This also has the advantage of not having to specify which input is needed to get a package from.
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{ home-manager, stylix, ... }:
|
|
let
|
|
VARIABLES = import ../src/variables.nix;
|
|
in
|
|
{
|
|
containers.srb2 = {
|
|
privateNetwork = true;
|
|
ephemeral = 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;
|
|
};
|
|
|
|
dri = rec {
|
|
hostPath = "/dev/dri";
|
|
mountPoint = hostPath;
|
|
};
|
|
};
|
|
|
|
allowedDevices = [
|
|
{
|
|
modifier = "rw";
|
|
node = "/dev/dri/renderD128";
|
|
}
|
|
];
|
|
|
|
config = { pkgs, ... }: {
|
|
imports = [
|
|
home-manager.nixosModules.home-manager
|
|
stylix.nixosModules.stylix
|
|
./common/wayland.nix
|
|
../modules/fonts.nix
|
|
../modules/stylix.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
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;
|
|
};
|
|
};
|
|
}
|