diff options
author | Patryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou> | 2024-09-29 16:28:22 +0200 |
---|---|---|
committer | Patryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou> | 2024-09-29 16:28:22 +0200 |
commit | d66515907f2902edecfc42cd2c387de75b6dcfc4 (patch) | |
tree | ad3c57104c94f500c4149a7f5be493fa1ccfe0e0 /platforms/linux/gtk.nix | |
parent | 4f591cc9c9663c413e8eb5cd8401a34a3251e30c (diff) | |
download | dots-d66515907f2902edecfc42cd2c387de75b6dcfc4.tar.gz dots-d66515907f2902edecfc42cd2c387de75b6dcfc4.zip |
Remove unused software
Diffstat (limited to 'platforms/linux/gtk.nix')
-rw-r--r-- | platforms/linux/gtk.nix | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/platforms/linux/gtk.nix b/platforms/linux/gtk.nix deleted file mode 100644 index a0d60e4..0000000 --- a/platforms/linux/gtk.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ pkgs, ... }: -{ - home.packages = with pkgs; [ - capitaine-cursors - papirus-icon-theme - hicolor-icon-theme - ]; - - gtk = { - enable = true; - theme.name = "Adwaita:dark"; - iconTheme.name = "Papirus"; - font.name = "Noto Sans 10"; - gtk3.extraConfig = { - gtk-cursor-theme-name = "capitaine-cursors"; - gtk-application-prefer-dark-theme=true; - }; - gtk3.extraCss = '' - window decoration { - margin: 0; - border: none; - } - ''; - gtk2.extraConfig = '' - gtk-cursor-theme-name="capitaine-cursors" - ''; - }; -} |