summaryrefslogtreecommitdiff
path: root/common/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/default.nix')
-rw-r--r--common/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/common/default.nix b/common/default.nix
index b5ad77c..8baaf5c 100644
--- a/common/default.nix
+++ b/common/default.nix
@@ -4,12 +4,14 @@
home-manager,
nixvim,
webtray,
+ wofi-pass,
...
}:
{
imports = [
home-manager.nixosModules.default
webtray.outputs.nixosModules.default
+ wofi-pass.outputs.nixosModules.default
];
environment.systemPackages = with pkgs; [
@@ -49,8 +51,15 @@
hardware.bluetooth.enable = true;
- environment.shellAliases = {
- dmenu-wl = "wofi --show dmenu";
+ xdg.portal = {
+ enable = true;
+ config = {
+ common = {
+ default = [ "hyprland" ];
+ };
+ };
+ configPackages = [ pkgs.xdg-desktop-portal-hyprland ];
+ extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
nix.settings.experimental-features = [