This commit is contained in:
Daniel Flanagan 2024-01-05 13:23:43 -06:00
parent 1db1d422c5
commit 7ca48ea2fc
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
3 changed files with 30 additions and 22 deletions

View file

@ -3,32 +3,33 @@ with builtins;
name = name; name = name;
value = import ./${name}.nix; value = import ./${name}.nix;
}) [ }) [
"common" "bat"
"melee" "broot"
"linux"
"cargo" "cargo"
"macos" "common"
"iex" "desktop"
"mako" "ewwbar"
"firefox"
"fish"
"git" "git"
"helix" "helix"
"bat" "htop"
"fish" "hyprland"
"iex"
"kitty" "kitty"
"linux"
"linux-desktop"
"macos"
"mako"
"melee"
"nnn"
"pass"
"senpai"
"sway"
"sway-laptop"
"swaylock"
"tmux"
"waybar"
"wezterm" "wezterm"
"zellij" "zellij"
"firefox"
"broot"
"nnn"
"waybar"
"swaylock"
"desktop"
"linux-desktop"
"sway"
"hyprland"
"ewwbar"
"sway-laptop"
"tmux"
"htop"
"senpai"
]) ])

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [exts.pass-otp]);
};
}

View file

@ -27,6 +27,7 @@ in {
home-manager.users.daniel = { home-manager.users.daniel = {
imports = with outputs.homeManagerModules; [ imports = with outputs.homeManagerModules; [
sway sway
pass
# sway-laptop # sway-laptop
# hyprland # hyprland
]; ];