update cdf alias

This commit is contained in:
Kopatz
2024-06-20 16:13:52 +02:00
parent 6fe69e8889
commit 6254e3612c
3 changed files with 14 additions and 13 deletions

View File

@@ -21,7 +21,7 @@
dev = "nix-shell --run zsh";
rm = "trashy put";
cat = "bat -P --style plain";
cdf = "cd $(find . -type d | fzf)";
cdf = "cd $(fd --type d --exclude node_modules --exclude bin --exclude target --exclude .cache . | fzf)";
};
#plugins = with pkgs; [
# {

View File

@@ -18,26 +18,26 @@ in {
#displayManager.sddm.wayland.enable = true;
};
services.xserver.desktopManager.plasma5.enable = true;
#services.xserver.desktopManager.plasma5.enable = true;
#services.desktopManager.plasma6.enable = true;
#environment.plasma6.excludePackages = with pkgs.kdePackages; [ ocean-sound-theme spectacle ];
services.desktopManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs.kdePackages; [ ocean-sound-theme spectacle kwallet dolphin ];
#environment.sessionVariables = {
environment.sessionVariables = {
# __GL_YIELD = "usleep";
# MOZ_ENABLE_WAYLAND = "1";
# NIXOS_OZONE_WL = "1";
#};
MOZ_ENABLE_WAYLAND = "1";
#NIXOS_OZONE_WL = "1";
};
programs.kdeconnect.enable = true;
xdg = {
portal = {
enable = true;
extraPortals = with pkgs;
[
xdg-desktop-portal-wlr
#xdg-desktop-portal-gtk
];
#extraPortals = with pkgs;
# [
# xdg-desktop-portal-wlr
# #xdg-desktop-portal-gtk
# ];
};
};

View File

@@ -52,6 +52,7 @@ in
libheif #convert heic to jpg with `heif-convert something.heic something.jpg`
tree
kop-newproject # creates a shell.nix and .envrc
fd # nicer find
];
};
}