mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
containers: merge default.nix with wine.nix
It turns out that I shouldn't actually need graphical container support for most containers, which might also improve build times with multiple containers.
This commit is contained in:
parent
f12d57c8f8
commit
11c555d2c5
@ -1,46 +0,0 @@
|
|||||||
{ nix-config, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = with nix-config.nixosModules; [
|
|
||||||
shell
|
|
||||||
desktop
|
|
||||||
system
|
|
||||||
stylix
|
|
||||||
fonts
|
|
||||||
];
|
|
||||||
|
|
||||||
home-manager.sharedModules = with nix-config.homeModules; [
|
|
||||||
fish
|
|
||||||
git
|
|
||||||
gtk
|
|
||||||
kitty
|
|
||||||
neovim
|
|
||||||
xresources
|
|
||||||
yazi
|
|
||||||
];
|
|
||||||
|
|
||||||
nixpkgs.overlays = builtins.attrValues nix-config.overlays;
|
|
||||||
|
|
||||||
environment = {
|
|
||||||
variables = {
|
|
||||||
TERM = "xterm-kitty";
|
|
||||||
};
|
|
||||||
|
|
||||||
sessionVariables = {
|
|
||||||
WAYLAND_DISPLAY = "wayland-1";
|
|
||||||
QT_QPA_PLATFORM = "wayland";
|
|
||||||
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
|
||||||
SDL_VIDEODRIVER = "wayland";
|
|
||||||
CLUTTER_BACKEND = "wayland";
|
|
||||||
MOZ_ENABLE_WAYLAND = "1";
|
|
||||||
XDG_RUNTIME_DIR = "/run/user/1000";
|
|
||||||
DISPLAY = ":0";
|
|
||||||
QT_IM_MODULE = "fcitx";
|
|
||||||
XMODIFIERS = "@im=fcitx";
|
|
||||||
SDL_IM_MODULE = "fcitx";
|
|
||||||
GLFW_IM_MODULE = "ibus";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
hardware.graphics.enable = true;
|
|
||||||
}
|
|
@ -14,6 +14,58 @@ let
|
|||||||
sakayaPort = 39493;
|
sakayaPort = 39493;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
imports = with nix-config.nixosModules; [
|
||||||
|
shell
|
||||||
|
desktop
|
||||||
|
system
|
||||||
|
stylix
|
||||||
|
fonts
|
||||||
|
];
|
||||||
|
|
||||||
|
home-manager.sharedModules = with nix-config.homeModules; [
|
||||||
|
fish
|
||||||
|
git
|
||||||
|
gtk
|
||||||
|
kitty
|
||||||
|
neovim
|
||||||
|
xresources
|
||||||
|
yazi
|
||||||
|
];
|
||||||
|
|
||||||
|
nixpkgs.overlays = builtins.attrValues nix-config.overlays;
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
systemPackages =
|
||||||
|
(with pkgs; [
|
||||||
|
wineWowPackages.waylandFull
|
||||||
|
winetricks
|
||||||
|
])
|
||||||
|
++ [ sakaya ];
|
||||||
|
|
||||||
|
variables = {
|
||||||
|
TERM = "xterm-kitty";
|
||||||
|
};
|
||||||
|
|
||||||
|
sessionVariables = {
|
||||||
|
WAYLAND_DISPLAY = "wayland-1";
|
||||||
|
QT_QPA_PLATFORM = "wayland";
|
||||||
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
||||||
|
SDL_VIDEODRIVER = "wayland";
|
||||||
|
CLUTTER_BACKEND = "wayland";
|
||||||
|
MOZ_ENABLE_WAYLAND = "1";
|
||||||
|
XDG_RUNTIME_DIR = "/run/user/1000";
|
||||||
|
DISPLAY = ":0";
|
||||||
|
QT_IM_MODULE = "fcitx";
|
||||||
|
XMODIFIERS = "@im=fcitx";
|
||||||
|
SDL_IM_MODULE = "fcitx";
|
||||||
|
GLFW_IM_MODULE = "ibus";
|
||||||
|
LC_ALL = "ja_JP.UTF-8";
|
||||||
|
TZ = "Asia/Tokyo";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
hardware.graphics.enable = true;
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
nat.forwardPorts = singleton {
|
nat.forwardPorts = singleton {
|
||||||
destination = "192.168.100.49:${sakayaPort}";
|
destination = "192.168.100.49:${sakayaPort}";
|
||||||
@ -39,18 +91,4 @@ in
|
|||||||
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment = {
|
|
||||||
systemPackages =
|
|
||||||
(with pkgs; [
|
|
||||||
wineWowPackages.waylandFull
|
|
||||||
winetricks
|
|
||||||
])
|
|
||||||
++ [ sakaya ];
|
|
||||||
|
|
||||||
sessionVariables = {
|
|
||||||
LC_ALL = "ja_JP.UTF-8";
|
|
||||||
TZ = "Asia/Tokyo";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,6 @@ in
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../containers
|
|
||||||
../containers/wine.nix
|
../containers/wine.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user