mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:29:42 +00:00
Compare commits
3 commits
ccc5cbe1d4
...
934230098e
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | 934230098e | ||
ItsDrike | 80c1d84061 | ||
ItsDrike | 067b829d5a |
|
@ -13,7 +13,7 @@ in {
|
|||
home.packages = with pkgs; [ swappy ];
|
||||
|
||||
xdg.configFile."swappy/config".text = lib.generators.toINI {} {
|
||||
General = {
|
||||
Default = {
|
||||
save_dir = "${config.xdg.userDirs.extraConfig.XDG_SCREENSHOTS_DIR}";
|
||||
save_filename_format = "Screenshot_%Y-%M-%d_%H-%M-%S.png";
|
||||
show_panel = false;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
(eventbox
|
||||
:tooltip {time.day}
|
||||
:class "module clock"
|
||||
;; :onclick "${EWW_CMD} open --toggle calendar"
|
||||
:onclick "${EWW_CMD} open --toggle calendar"
|
||||
|
||||
(box
|
||||
:space-evenly false
|
||||
|
|
|
@ -10,19 +10,14 @@ in
|
|||
theme = {
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
default = "Catppuccin-Mocha-Standard-Blue-dark";
|
||||
default = "Tokyonight-Dark-BL";
|
||||
description = "The name for the GTK theme package";
|
||||
};
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
description = "The theme package to be used for GTK programs";
|
||||
default = pkgs.catppuccin-gtk.override {
|
||||
size = "standard";
|
||||
accents = ["blue"];
|
||||
variant = "mocha";
|
||||
tweaks = ["normal"];
|
||||
};
|
||||
default = pkgs.tokyo-night-gtk;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue