legacy artemis config - needs refactor

This commit is contained in:
Callum Leslie 2024-08-30 17:08:21 +01:00
parent aba3aceed8
commit 961d41b9bf
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
34 changed files with 1572 additions and 12 deletions

57
hosts/artemis/styling.nix Normal file
View file

@ -0,0 +1,57 @@
{pkgs, ...}: {
stylix = {
enable = true;
image = pkgs.fetchurl {
url = "https://i.redd.it/jd1nuwsl0d121.jpg";
sha256 = "sha256-ff3ajGVsay2dtHiHmO2MYlqCvexUQjGifMs/ofzuyvI=";
};
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/onedark.yaml";
cursor = {
# package = pkgs.bibata-cursors;
# name = "Bibata-Modern-Ice";
package = pkgs.apple-cursor;
name = "macOS-Monterey";
size = 8;
};
fonts = {
monospace = {
package = pkgs.nerdfonts.override {fonts = ["JetBrainsMono"];};
name = "JetBrainsMono Nerd Font Mono";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
sizes = {
applications = 12;
terminal = 12;
desktop = 10;
popups = 10;
};
};
opacity = {
applications = 1.0;
terminal = 1.0;
desktop = 1.0;
popups = 1.0;
};
targets = {
fish.enable = false;
};
};
}