1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

add stylix

This commit is contained in:
andrey_varnavskiy
2024-11-27 10:02:04 +05:00
parent f6f5d44142
commit 9ee9cbf73d
3 changed files with 10 additions and 0 deletions

View File

@@ -10,6 +10,8 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
stylix.url = "github:danth/stylix";
#nixvim = { #nixvim = {
# url = "github:nix-community/nixvim"; # url = "github:nix-community/nixvim";
# inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";

View File

@@ -9,6 +9,7 @@
./mime.nix ./mime.nix
./net.nix ./net.nix
./nh.nix ./nh.nix
./stylix.nix
./timezone.nix ./timezone.nix
./user.nix ./user.nix
./zram.nix ./zram.nix

7
nixos/modules/stylix.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, inputs, ... }: {
imports = [ inputs.stylix.nixosModules.stylix ];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
};
}