This commit is contained in:
2025-09-25 14:51:53 +02:00
parent ebcca4a5b3
commit cd2747523d
8 changed files with 75 additions and 19 deletions
+2
View File
@@ -6,6 +6,7 @@
}:
{
environment.systemPackages = with pkgs; [
aider-chat-full
zip
unzip
@@ -44,6 +45,7 @@
jupyter
python312Full
python312Packages.uv
python312Packages.ipykernel
#dotnet-sdk_8
#dotnet-sdk_9
+2 -1
View File
@@ -14,7 +14,8 @@
"tss"
"networking"
"podman"
]; # Enable sudo for the user.
"pipewire"
];
packages = with pkgs; [ ];
};
}
+3
View File
@@ -12,6 +12,9 @@
security.rtkit.enable = lib.mkDefault true;
services.pipewire = lib.mkDefault {
enable = true;
systemWide = true;
audio.enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
+40
View File
@@ -0,0 +1,40 @@
{
pkgs,
lib,
config,
...
}:
{
environment.systemPackages = [
pkgs.xdg-desktop-portal-gtk
pkgs.xdg-desktop-portal-gnome
pkgs.xdg-desktop-portal
];
xdg = {
autostart.enable = true;
menus.enable= true;
icons.enable= true;
sounds.enable= true;
portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
xdg-desktop-portal-gnome
xdg-launch
xdg-ninja
xdg-utils
];
configPackages = with pkgs; [
gnome-session
niri
];
};
terminal-exec.enable = true;
};
}