something-broke

This commit is contained in:
Lilith 2024-06-09 23:52:27 +02:00
parent e97713666a
commit 23521dbb2c
Signed by: lilith
GPG key ID: 8712A0F317C37175
12 changed files with 200 additions and 18 deletions

View file

@ -17,6 +17,7 @@
du-dust
ranger
ripgrep
papirus-icon-theme
sops
wget
wireguard-tools

View file

@ -2,6 +2,6 @@
environment.variables = {
EDITOR = "hx";
VISUAL = "hx";
FLAKE = "${conf.home}/nixos";
FLAKE = conf.home + /nixos;
};
}

View file

@ -1,5 +1,7 @@
{pkgs, ...}: {
fonts.packages = with pkgs; [
(nerdfonts.override {fonts = ["JetBrainsMono"];})
twemoji-color-font
];
}

View file

@ -1,6 +1,32 @@
{stylix, ...}: {
{stylix, pkgs, config, ...}: {
imports = [stylix.nixosModules.stylix];
stylix.image = ../wallpapers/default.png;
stylix.polarity = "dark";
stylix = {
image = ../wallpapers/default.png;
polarity = "dark";
opacity = {
terminal = 0.8;
popups = 0.8;
};
fonts = {
# monospace = {
# package = pkgs.jetbrains-mono;
# name = "JetBrainsMono";
# };
emoji = {
package = pkgs.twemoji-color-font;
name = "Twemoji";
};
sizes = { applications = 14; desktop = 12; popups = 12; terminal = 14; };
};
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata theme";
};
};
}