-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b2d120
commit 6287dbc
Showing
10 changed files
with
146 additions
and
383 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
lib, | ||
pkgs, | ||
config, | ||
... | ||
}: | ||
{ | ||
config = { | ||
stylix = { | ||
enable = true; | ||
cursor = { | ||
package = pkgs.bibata-cursors-translucent; | ||
name = "Bibata_Ghost"; | ||
size = 24; | ||
}; | ||
fonts = { | ||
monospace = { | ||
name = "Maple Mono NF"; | ||
package = pkgs.maple-mono-NF; | ||
}; | ||
sansSerif = config.stylix.fonts.monospace; | ||
serif = config.stylix.fonts.monospace; | ||
sizes = { | ||
# applications = 13; | ||
# desktop = ; | ||
# popups = ; | ||
terminal = 11; | ||
}; | ||
}; | ||
targets = { | ||
waybar.enable = false; | ||
hyprpaper.enable = lib.mkForce false; | ||
}; | ||
}; | ||
|
||
home.packages = with pkgs; [ | ||
(writeShellApplication { | ||
# credit: Janik-Haag | ||
name = "toggle-theme"; | ||
runtimeInputs = with pkgs; [ | ||
home-manager | ||
coreutils | ||
ripgrep | ||
]; | ||
text = '' | ||
"$(home-manager generations | head -1 | rg -o '/[^ ]*')"/specialisation/light/activate && hyprctl reload | ||
''; | ||
}) | ||
]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.