(desktop) Gen 447: Added some more program configs
This commit is contained in:
@@ -6,14 +6,10 @@ in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gtk3
|
||||
adwaita-icon-theme
|
||||
uhk-agent
|
||||
dunst
|
||||
rofi
|
||||
sqlite
|
||||
starship
|
||||
zathura
|
||||
inkscape
|
||||
gimp
|
||||
imagemagick
|
||||
yt-dlp
|
||||
vlc
|
||||
@@ -22,7 +18,6 @@ in
|
||||
qbittorrent
|
||||
obs-studio
|
||||
neovide
|
||||
chromium
|
||||
zsh
|
||||
zsh-syntax-highlighting
|
||||
zsh-history-substring-search
|
||||
|
||||
8
modules/home/programs/autojump.nix
Normal file
8
modules/home/programs/autojump.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.autojump = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
8
modules/home/programs/fzf.nix
Normal file
8
modules/home/programs/fzf.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
10
modules/home/programs/password-store.nix
Normal file
10
modules/home/programs/password-store.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/.pass";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user