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 kitty
dolphin dolphin
hyfetch hyfetch
wofi
enpass enpass
firefox firefox
thunderbird thunderbird

View file

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

View file

@ -8,6 +8,9 @@
./hyprlock.nix ./hyprlock.nix
./hyprpaper.nix ./hyprpaper.nix
#./kanshi.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 = { folders = {
"Documents" = { "Documents" = {
id = "jtl6g-qjmwo"; id = "jtl6g-qjmwo";
path = "/home/willifan/temp/Documents"; path = "/mnt/data/Documents";
devices = [ "Anton" ]; devices = [ "Anton" ];
}; };
"Pictures" = { "Pictures" = {
id = "po4qj-q9t0t"; id = "po4qj-q9t0t";
path = "/home/willifan/temp/Pictures"; path = "/mnt/data/Pictures";
devices = [ "Anton" ]; devices = [ "Anton" ];
}; };
"Videos" = { "Videos" = {
id = "4wqf5-xasng"; id = "4wqf5-xasng";
path = "/home/willifan/temp/Videos"; path = "/mnt/data/Videos";
devices = [ "Anton" ]; devices = [ "Anton" ];
}; };
"Notes" = { "Notes" = {
id = "oc61n-iewgj"; id = "oc61n-iewgj";
path = "/home/willifan/temp/Notes"; path = "/mnt/data/Notes";
devices = [ "Anton" ]; devices = [ "Anton" ];
}; };
"Music" = { "Music" = {
id = "xxh8a-3y2tq"; id = "xxh8a-3y2tq";
path = "/home/willifan/temp/Music"; path = "/mnt/data/Music";
devices = [ "Anton" ]; devices = [ "Anton" ];
}; };
}; };