dotfiles/machines/common/linux/default.nix

12 lines
234 B
Nix

{pkgs, ...}: {
imports = [
./boot.nix
./network.nix
./sound.nix
./xsession.nix
];
# needed for gnome3 pinentry
services.dbus.packages = [pkgs.gcr];
xdg.portal.enable = true;
xdg.portal.wlr.enable = true;
}