nix dotfiles
This commit is contained in:
commit
7b8005c867
27 changed files with 1728 additions and 0 deletions
41
navi/laniakea/eww.nix
Normal file
41
navi/laniakea/eww.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{pkgs, ...}: {
|
||||
programs.eww = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
configDir = ./eww;
|
||||
};
|
||||
|
||||
home.file.".config/eww/get_volume.sh" = {
|
||||
source = ./eww/get_volume.sh;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.file.".config/eww/volume_scroll.sh" = {
|
||||
source = ./eww/volume_scroll.sh;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.file.".config/eww/get_wifi.sh" = {
|
||||
source = ./eww/get_wifi.sh;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.file.".config/eww/get_layout.sh" = {
|
||||
source = ./eww/get_layout.sh;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
home.file.".config/eww/toggle_layout.sh" = {
|
||||
source = ./eww/toggle_layout.sh;
|
||||
executable = true;
|
||||
};
|
||||
|
||||
services.playerctld = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
pavucontrol
|
||||
libnotify
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue