add github actions

This commit is contained in:
Vivian 2022-09-09 19:02:32 +02:00
parent af8634cd42
commit 60b36f3709
6 changed files with 41 additions and 16 deletions

View file

@ -43,7 +43,6 @@
wf-recorder # Screenrecorder
wl-clipboard # Clipboard manager
wofi # Wayland rofi
inputs.riff.packages.x86_64-linux.riff
];
@ -51,6 +50,11 @@
enable = true;
};
programs.exa = {
enable = true;
enableAliases = true;
};
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
@ -60,7 +64,6 @@
programs.mako = {
enable = true;
borderRadius = 5;
};
programs.tmux = {

View file

@ -7,7 +7,7 @@
];
home.file.".config/eww/eww.yuck".source = ./eww.yuck;
home.file.".config/eww/eww.scss".source = ./eww.scss;
home.file.".config/eww/eww.scss".text = builtins.readFile ./eww.scss;
# scripts
home.file.".config/eww/scripts/volume.sh" = {

View file

@ -59,5 +59,6 @@ in
backgroundColor = colour.hex.mantle;
borderColor = colour.hex.pink;
textColor = colour.hex.text;
borderRadius = 5;
};
}