Compare commits

...

6 Commits

Author SHA1 Message Date
baed566262 remove unused import 2026-05-06 19:57:32 +02:00
26cbf784b2 fix: yazi 2026-05-06 19:46:58 +02:00
3f463c5dc7 change xdg folders to flake variables 2026-05-06 18:24:17 +02:00
5675c7e388 update yazi 2026-05-06 18:22:09 +02:00
b402858cd6 remove hugo & update hyprland 2026-05-06 17:50:58 +02:00
49c1ff737a chore: state before home-manager update 2026-05-06 12:29:55 +02:00
5 changed files with 54 additions and 15 deletions

View File

@@ -70,9 +70,14 @@
statusBar = "ashell"; # available: ashell | waybar
pathConfig = {
wallpaper = "Obrazy/tapety/catppuccin";
screenshot = "Obrazy/zrzuty/";
obsidian = "Dokumenty/obsidian";
wallpaper = "Obrazy/tapety/catppuccin"; # relative to $HOME/
screenshot = "Obrazy/zrzuty/"; # relative to $HOME/
obsidian = "Dokumenty/obsidian"; # relative to $HOME/
projects = "~/Kodowanie";
documents = "~/Dokumenty";
pictures = "~/Obrazy";
downloads = "~/Pobrane";
video = "~/Video";
};
isNixOS = true;

View File

@@ -1,4 +1,4 @@
{ ... }:
{ userConfig, ... }:
{
programs.yazi = {
@@ -37,6 +37,41 @@
"yank"
];
}
{
on = [
"g"
"p"
];
run = "cd ${userConfig.pathConfig.downloads}";
}
{
on = [
"g"
"d"
];
run = "cd ${userConfig.pathConfig.documents}";
}
{
on = [
"g"
"v"
];
run = "cd ${userConfig.pathConfig.video}";
}
{
on = [
"g"
"o"
];
run = "cd ${userConfig.pathConfig.pictures}";
}
{
on = [
"g"
"k"
];
run = "cd ${userConfig.pathConfig.projects}";
}
];
};
}

View File

@@ -11,15 +11,16 @@
kb_rules = "";
follow_mouse = 1;
left_handed = false;
sensitivity = -0.5;
sensitivity = 0;
touchpad = {
natural_scroll = true;
};
};
# mouse has super high dpi so lover the sensitivity!
device = {
name = "msft0001:01-06cb:7f28-touchpad";
sensitivity = 0;
name = "corsair-corsair-m75-gaming-mouse";
sensitivity = -0.5;
};
cursor = {

View File

@@ -39,8 +39,6 @@ in
nh
runc
hugo
# Music
spotify

View File

@@ -1,4 +1,4 @@
{ ... }:
{ userConfig, ... }:
let
browserFallback = [
@@ -52,12 +52,12 @@ in
enable = true;
createDirectories = true;
desktop = null;
documents = "$HOME/Dokumenty";
download = "$HOME/Pobrane";
documents = baseNameOf userConfig.pathConfig.documents;
download = baseNameOf userConfig.pathConfig.downloads;
music = null;
pictures = "$HOME/Obrazy";
videos = "$HOME/Video";
projects = "$HOME/Kodowanie";
pictures = baseNameOf userConfig.pathConfig.pictures;
videos = baseNameOf userConfig.pathConfig.video;
projects = baseNameOf userConfig.pathConfig.projects;
templates = null;
publicShare = null;
setSessionVariables = true;