This commit is contained in:
willifan 2024-05-14 17:08:54 +02:00
parent 924b849bd4
commit 1c44584ce8
7 changed files with 27 additions and 8 deletions

View file

@ -33,7 +33,6 @@
kitty
dolphin
hyfetch
wofi
enpass
firefox
thunderbird

View file

@ -8,8 +8,6 @@
./envvar.nix
./git.nix
./locales.nix
./pipewire.nix
./polkit.nix
#./ssh.nix
./syncthing.nix
./udev.nix

View file

@ -8,6 +8,9 @@
./hyprlock.nix
./hyprpaper.nix
#./kanshi.nix
./pipewire.nix
./polkit.nix
./wofi.nix
];

View file

@ -0,0 +1,19 @@
{ pkgs, home-manager, ... }:
{
home-manager.users.willifan = {
programs.wofi = {
enable = true;
settings = {
normal_window = false;
allow_images = true;
halign = "fill";
};
style = ''
window {
border-radius: 10px;
}
'';
};
};
}

View file

@ -18,27 +18,27 @@
folders = {
"Documents" = {
id = "jtl6g-qjmwo";
path = "/home/willifan/temp/Documents";
path = "/mnt/data/Documents";
devices = [ "Anton" ];
};
"Pictures" = {
id = "po4qj-q9t0t";
path = "/home/willifan/temp/Pictures";
path = "/mnt/data/Pictures";
devices = [ "Anton" ];
};
"Videos" = {
id = "4wqf5-xasng";
path = "/home/willifan/temp/Videos";
path = "/mnt/data/Videos";
devices = [ "Anton" ];
};
"Notes" = {
id = "oc61n-iewgj";
path = "/home/willifan/temp/Notes";
path = "/mnt/data/Notes";
devices = [ "Anton" ];
};
"Music" = {
id = "xxh8a-3y2tq";
path = "/home/willifan/temp/Music";
path = "/mnt/data/Music";
devices = [ "Anton" ];
};
};