1
0
forked from extern/nix-config
donovanglover-nix-config/containers/gui.nix

43 lines
850 B
Nix
Raw Normal View History

2023-06-22 18:37:32 +02:00
{ home-manager, stylix, ... }:
2023-06-13 00:09:57 +02:00
{
containers.gui = {
privateNetwork = true;
ephemeral = true;
bindMounts = {
"/mnt" = {
hostPath = "/home/user/containers/gui";
2023-06-13 00:09:57 +02:00
isReadOnly = false;
};
waylandDisplay = rec {
hostPath = "/run/user/1000";
mountPoint = hostPath;
};
x11Display = rec {
hostPath = "/tmp/.X11-unix";
mountPoint = hostPath;
};
2023-06-13 00:09:57 +02:00
};
2023-06-13 15:06:39 +02:00
config = { pkgs, ... }: {
2023-06-13 00:09:57 +02:00
imports = [
2023-06-22 18:37:32 +02:00
home-manager.nixosModules.home-manager
stylix.nixosModules.stylix
../setup.nix
2023-06-13 00:09:57 +02:00
];
environment.systemPackages = with pkgs; [
2023-06-16 13:31:34 +02:00
audacity # Audio editing
2023-06-13 00:09:57 +02:00
gimp # Video editing
anki # Spaced repetition
sqlitebrowser # SQL
kanjidraw # Kanji draw
libreoffice
2023-06-13 00:09:57 +02:00
];
};
};
}