more buldak configuration

This commit is contained in:
chloe 2025-09-27 04:09:32 +02:00
parent 43733e4a4a
commit 9d41a6fa81
4 changed files with 94 additions and 14 deletions

View file

@ -0,0 +1,5 @@
{
imports = [
./discord.nix
];
}

View file

@ -0,0 +1,31 @@
{
config,
pkgs,
inputs,
...
}:
let
moonlight-client = pkgs.discord.override {
withMoonlight = true;
};
in
{
environment.systemPackages = with pkgs; [
moonlight-client
inputs.moonlight.packages.${pkgs.system}.moonlight
vesktop
];
# screen record support
xdg = {
autostart.enable = true;
icons.enable = true;
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
wlr.enable = true;
};
};
}

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zathura
bitwarden
nil
obs-studio
osu-lazer-bin
];
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
dockerCompat = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
};
};
}