moved all of my config into this nix flake

This commit is contained in:
Sebastian Moser
2023-10-28 19:10:37 +02:00
parent 9facde9d3a
commit 112ef46fd2
46 changed files with 3545 additions and 0 deletions

14
common/programms/rofi.nix Normal file
View File

@@ -0,0 +1,14 @@
{ ... }:
{
home-manager.users.me.programs.rofi = {
enable = true;
theme = "Ark-Dark by leofa";
extraConfig = ''
modi: "run,filebrowser";
color-normal: "#1c2023, #919ba0, #1c2023, #a4a4a4, #1c2023";
color-urgent: "argb:00000000, #f43753, argb:00000000, argb:00000000, #e29a49";
color-active: "argb:00000000, #49bbfb, argb:00000000, argb:00000000, #e29a49";
color-window: "#1c2023, #919ba0, #1c2023";
'';
};
}