From 5f2eedbc5311dfefd98c7ad55570ead7b6631375 Mon Sep 17 00:00:00 2001 From: Cookiez Date: Mon, 25 May 2026 11:22:16 +0200 Subject: [PATCH] Refactored flake inputs to all follow the same schema --- flake.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 009dc7f..1379c33 100644 --- a/flake.nix +++ b/flake.nix @@ -16,8 +16,10 @@ nixos-hardware.url = "github:NixOS/nixos-hardware"; #To Provide Framework13 hardware modules - home-manager.url = "github:nix-community/home-manager/master"; - home-manager.inputs.nixpkgs.follows = "nixpkgs"; + home-manager = { + url = "github:nix-community/home-manager/master"; + inputs.nixpkgs.follows = "nixpkgs"; + }; plasma-manager = { url = "github:nix-community/plasma-manager"; @@ -25,9 +27,10 @@ inputs.home-manager.follows = "home-manager"; }; - #stylix.url = "github:nix-community/stylix/"; - stylix.url = "github:nix-community/stylix/master"; #Had to use branch or it would not build corrently - stylix.inputs.nixpkgs.follows = "nixpkgs"; + stylix = { + url = "github:nix-community/stylix/master"; #Had to use branch or it would not build corrently + inputs.nixpkgs.follows = "nixpkgs"; + }; quickshell = { url = "github:outfoxxed/quickshell";