feat(nixosModules/system): add stylix (WIP)

This commit is contained in:
Mohammad Rafiq 2025-05-31 12:20:01 +08:00
parent 13d8ef5c91
commit e93a25d791
No known key found for this signature in database
2 changed files with 11 additions and 1 deletions

View file

@ -79,6 +79,7 @@
disko.nixosModules.disko
impermanence.nixosModules.impermanence
sops-nix.nixosModules.sops
stylix.nixosModules.stylix
];
homes.modules = with inputs; [
impermanence.homeManagerModules.impermanence

View file

@ -1,4 +1,9 @@
{ config, lib, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports = [
./boot.nix
@ -16,6 +21,10 @@
};
config = {
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
};
system.stateVersion = "25.05"; # Did you read the comment?
};
}