trying stylix
This commit is contained in:
+7
-3
@@ -604,10 +604,14 @@ This sets the XDG implementation
|
|||||||
** =generated/out_of_tree/core/stylix.nix=
|
** =generated/out_of_tree/core/stylix.nix=
|
||||||
This sets the stylix implementation
|
This sets the stylix implementation
|
||||||
#+BEGIN_SRC nix :tangle generated/out_of_tree/core/stylix.nix :noweb tangle :mkdirp yes :eval never-html
|
#+BEGIN_SRC nix :tangle generated/out_of_tree/core/stylix.nix :noweb tangle :mkdirp yes :eval never-html
|
||||||
{ config, pkgs, flakeRoot, ... }:
|
{ config, pkgs, inputs, flakeRoot, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Enable Stylix at system level
|
# Import the Stylix NixOS module from the flake input
|
||||||
stylix.nixosModules.stylix;
|
imports = [
|
||||||
|
inputs.stylix.nixosModules.stylix
|
||||||
|
];
|
||||||
|
|
||||||
# Minimal configuration
|
# Minimal configuration
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
|
{ config, pkgs, inputs, flakeRoot, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config,
|
# Import the Stylix NixOS module from the flake input
|
||||||
pkgs,
|
|
||||||
flakeRoot,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
# Import the Stylix NixOS module
|
|
||||||
imports = [
|
imports = [
|
||||||
stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Minimal configuration
|
# Minimal configuration
|
||||||
|
|||||||
Reference in New Issue
Block a user