non important commit

This commit is contained in:
benstrb 2026-01-27 19:04:45 +01:00
parent 4c773d8851
commit ae56f0a440
8 changed files with 21 additions and 19 deletions

View file

@ -24,11 +24,7 @@
../modules/locale.nix
];
programs = {
niri.enable = true;
wayland.enable = true;
xwayland.enable = true;
};
programs.niri.enable = true;
nix.settings.experimental-features = ["nix-command" "flakes"];

View file

@ -1,9 +1,14 @@
{pkgs, ...}: {
xdg.portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
configPackages = with pkgs; [
xdg-desktop-portal-gtk
];
xdg = {
portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
configPackages = with pkgs; [
xdg-desktop-portal-gtk
];
};
mime.enable = true;
menus.enable = true;
};
}