summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-03-01 19:02:23 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-03-01 19:02:23 +0100
commit34d85aa7559d1bd96db863668820404fd0a5d2d1 (patch)
tree0eea9d5f9f4830bac0efb9bee9d4a45f78b063b0 /flake.nix
parentd954e4cc44a17c301d3d41dc02428e58d1d58cc9 (diff)
parent20825c9ec1dee69791d252ac3709cfc5c850045b (diff)
Merge branch 'master' into local
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 9b97a1a..00d2c30 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,9 +1,10 @@
{
inputs = {
my-nixpkgs.url = "git+file:///home/qaristote/code/nix/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;
};