dotfiles/machines/common/linux/default.nix

13 lines
234 B
Nix
Raw Normal View History

2023-03-12 21:45:52 +01:00
{pkgs, ...}: {
imports = [
./boot.nix
./network.nix
./sound.nix
./xsession.nix
];
2023-03-12 21:45:52 +01:00
# needed for gnome3 pinentry
services.dbus.packages = [pkgs.gcr];
xdg.portal.enable = true;
xdg.portal.wlr.enable = true;
}