summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-03-01 16:22:09 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-03-01 16:22:09 +0100
commit20825c9ec1dee69791d252ac3709cfc5c850045b (patch)
tree760f1237f049ffb5a099ddbed1d1621c545b404a /flake.nix
parentd5f0c356a33ec0b5670595f9a5175a642acee900 (diff)
use stylix
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;
};