summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 33b2044..b46f4a0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,9 +1,10 @@
{
inputs = {
my-nixpkgs.url = "github:qaristote/my-nixpkgs";
+ stylix.url = "github:danth/stylix";
};
- outputs = { self, nixpkgs, my-nixpkgs, nixos-hardware, home-manager }:
+ outputs = { self, nixpkgs, my-nixpkgs, nixos-hardware, home-manager, stylix }:
let
system = "x86_64-linux";
overlays-module = { ... }: {
@@ -15,7 +16,7 @@
in {
nixosConfigurations.latitude-7490 = nixpkgs.lib.nixosSystem {
inherit system;
- specialArgs = { inherit nixos-hardware home-manager homeModules; };
+ specialArgs = { inherit nixos-hardware home-manager homeModules stylix; };
modules = nixosModules;
};