add wofi
This commit is contained in:
parent
924b849bd4
commit
1c44584ce8
7 changed files with 27 additions and 8 deletions
|
@ -33,7 +33,6 @@
|
||||||
kitty
|
kitty
|
||||||
dolphin
|
dolphin
|
||||||
hyfetch
|
hyfetch
|
||||||
wofi
|
|
||||||
enpass
|
enpass
|
||||||
firefox
|
firefox
|
||||||
thunderbird
|
thunderbird
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
./hyprlock.nix
|
./hyprlock.nix
|
||||||
./hyprpaper.nix
|
./hyprpaper.nix
|
||||||
#./kanshi.nix
|
#./kanshi.nix
|
||||||
|
./pipewire.nix
|
||||||
|
./polkit.nix
|
||||||
|
./wofi.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
19
users/willifan/graphical/hyprland/wofi.nix
Normal file
19
users/willifan/graphical/hyprland/wofi.nix
Normal 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;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -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" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue