This commit is contained in:
Geoffrey Frogeye 2024-06-29 18:10:50 +02:00
parent a6a1e32ade
commit 88e63aaf7f
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
6 changed files with 56 additions and 65 deletions

View file

@ -1,4 +1,4 @@
{ stylix, ... }:
{ ... }:
{
imports = [
../common/frogarized
@ -21,7 +21,6 @@
./rebuild
./shell
./ssh.nix
stylix.homeManagerModules.stylix
./theme
./tmux
./vim

View file

@ -1,7 +1,8 @@
{ pkgs, config, lib, ... }:
{ pkgs, config, lib, stylix, ... }:
{
config = {
stylix = {
enable = true;
polarity = config.frogeye.polarity;
fonts = {
monospace = {
@ -13,4 +14,7 @@
};
};
};
imports = [
stylix.homeManagerModules.stylix
];
}