summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-09-20 16:34:35 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2024-09-20 16:34:35 +0200
commit9bc6da0b8b61809e1e6f478e0b6424dea0b46641 (patch)
tree7dabd4dc7a320a2affe6ef1604520710468ce550 /common
parent326a73e75b8a236350c406fcf46f203a06749a5c (diff)
add bash config and wofi-pass
Diffstat (limited to 'common')
-rw-r--r--common/default.nix2
-rw-r--r--common/home/default.nix1
-rw-r--r--common/home/hyprland/default.nix2
-rw-r--r--common/home/programs/bash/default.nix8
4 files changed, 13 insertions, 0 deletions
diff --git a/common/default.nix b/common/default.nix
index b5ad77c..8441030 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; [
diff --git a/common/home/default.nix b/common/home/default.nix
index c98267b..33bde9b 100644
--- a/common/home/default.nix
+++ b/common/home/default.nix
@@ -13,6 +13,7 @@ let
"hyprlock"
"waybar"
"zsh"
+ "bash"
"btop"
"wofi"
"password-store"
diff --git a/common/home/hyprland/default.nix b/common/home/hyprland/default.nix
index 9d9749f..d92c27b 100644
--- a/common/home/hyprland/default.nix
+++ b/common/home/hyprland/default.nix
@@ -8,6 +8,8 @@
"$mod+Shift, Return, exec, alacritty"
"$mod+Shift, Q, exit"
"$mod+Shift, B, exec, firefox"
+ "$mod+Shift, P, exec, wofi-pass"
+ "$mod+Shift, O, exec, wofi-pass otp"
"$mod, Escape, exec, hyprlock"
"$mod, Space, exec, wofi --show run"
"$mod, C, killactive,"
diff --git a/common/home/programs/bash/default.nix b/common/home/programs/bash/default.nix
new file mode 100644
index 0000000..31677af
--- /dev/null
+++ b/common/home/programs/bash/default.nix
@@ -0,0 +1,8 @@
+{ ... }:
+{
+ enable = true;
+
+ bashrcExtra = ''
+ . "/home/n8/.nix-profile/etc/profile.d/hm-session-vars.sh"
+ '';
+}