move sway config files to nix files

This commit is contained in:
2023-07-13 19:39:41 +02:00
parent 61da33075c
commit 135d190b74
4 changed files with 626 additions and 7 deletions

View File

@@ -0,0 +1,46 @@
{ config, pkgs, lib, ... }:
{
environment.etc = {
"wofi/style.css".text = ''
window {
margin: 0px;
border: 1px solid #bd93f9;
background-color: #282a36;
}
#input {
margin: 5px;
border: none;
color: #f8f8f2;
background-color: #44475a;
}
#inner-box {
margin: 5px;
border: none;
background-color: #282a36;
}
#outer-box {
margin: 5px;
border: none;
background-color: #282a36;
}
#scroll {
margin: 0px;
border: none;
}
#text {
margin: 5px;
border: none;
color: #f8f8f2;
}
#entry:selected {
background-color: #44475a;
}
'';
};
}