(desktop) Gen 447: Added some more program configs
This commit is contained in:
20
flake.lock
generated
20
flake.lock
generated
@@ -346,11 +346,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1728726232,
|
"lastModified": 1728791962,
|
||||||
"narHash": "sha256-8ZWr1HpciQsrFjvPMvZl0W+b0dilZOqXPoKa2Ux36bc=",
|
"narHash": "sha256-nr5QiXwQcZmf6/auC1UpX8iAtINMtdi2mH+OkqJQVmU=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "d57112db877f07387ce7104b5ac346ede556d2d7",
|
"rev": "64c6325b28ebd708653dd41d88f306023f296184",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -442,11 +442,11 @@
|
|||||||
"xdph": "xdph"
|
"xdph": "xdph"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1728752206,
|
"lastModified": 1728836804,
|
||||||
"narHash": "sha256-r5xU/LqU4TrUOIouhYqrTZc1VY1zLQOOzbLsFCDlfpI=",
|
"narHash": "sha256-7dd4KUVMBeXIKrPzQn6FO7kfuqHbI0ognYgmoFfNaXM=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "1822707c7e7394ce8c7572f2fe890763a307f499",
|
"rev": "5c3bd8e93d9f25be3e16a0445ba6fce8d30b6d73",
|
||||||
"revCount": 5332,
|
"revCount": 5336,
|
||||||
"submodules": true,
|
"submodules": true,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/hyprwm/Hyprland"
|
"url": "https://github.com/hyprwm/Hyprland"
|
||||||
@@ -825,11 +825,11 @@
|
|||||||
},
|
},
|
||||||
"nur": {
|
"nur": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1728794320,
|
"lastModified": 1728833943,
|
||||||
"narHash": "sha256-5Dm+961fOsneg5nX6gBCHPHMdwF6/JbV5p0Zvmi6ybU=",
|
"narHash": "sha256-W5vzwrgfSSYw+WVOLhg+1xVFewN6NuKnUnNfNW7xC9c=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NUR",
|
"repo": "NUR",
|
||||||
"rev": "15bee9bde462e0e47e7d34c78d50bb0cc718c6e4",
|
"rev": "72974c03c9952b3591688e64af12e19e3686a499",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -6,14 +6,10 @@ in
|
|||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
gtk3
|
gtk3
|
||||||
adwaita-icon-theme
|
|
||||||
uhk-agent
|
uhk-agent
|
||||||
dunst
|
|
||||||
rofi
|
|
||||||
sqlite
|
sqlite
|
||||||
starship
|
|
||||||
zathura
|
zathura
|
||||||
inkscape
|
gimp
|
||||||
imagemagick
|
imagemagick
|
||||||
yt-dlp
|
yt-dlp
|
||||||
vlc
|
vlc
|
||||||
@@ -22,7 +18,6 @@ in
|
|||||||
qbittorrent
|
qbittorrent
|
||||||
obs-studio
|
obs-studio
|
||||||
neovide
|
neovide
|
||||||
chromium
|
|
||||||
zsh
|
zsh
|
||||||
zsh-syntax-highlighting
|
zsh-syntax-highlighting
|
||||||
zsh-history-substring-search
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -13,7 +13,6 @@
|
|||||||
feh
|
feh
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
fuse
|
fuse
|
||||||
fzf
|
|
||||||
git
|
git
|
||||||
gnumake
|
gnumake
|
||||||
gst_all_1.gstreamer
|
gst_all_1.gstreamer
|
||||||
@@ -44,7 +43,6 @@
|
|||||||
jq
|
jq
|
||||||
pamixer
|
pamixer
|
||||||
parted
|
parted
|
||||||
pass
|
|
||||||
pavucontrol
|
pavucontrol
|
||||||
pkg-config
|
pkg-config
|
||||||
playerctl
|
playerctl
|
||||||
|
|||||||
Reference in New Issue
Block a user