From a3121c0ce0add4a772535ae5b634ea306f2e2d3a Mon Sep 17 00:00:00 2001 From: biscuit Date: Thu, 5 Jun 2025 13:49:30 -0500 Subject: [PATCH] a --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 4897648..8258432 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; home-manager.url = "github:nix-community/home-manager"; - home-manager.inputs.nixpkgs.follows = "nixpkgs"; # `follows` ensure it follows nixpkgs version + home-manager.inputs.nixpkgs.follows = "nixpkgs"; # `follows` ensure it follows nixpkgs versiona. Avoids breaking updates. ags.url = "github:aylur/ags"; ags.inputs.nixpkgs.follows = "nixpkgs"; @@ -30,7 +30,7 @@ info = import ./info.nix; lib = nixpkgs.lib; system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = nixpkgs.legacyPackages.${system}; # alternative, without overlays. Unused. args = { inherit inputs system; @@ -39,8 +39,8 @@ in { nixosConfigurations = { desktop = lib.nixosSystem { - specialArgs = args; inherit system; + specialArgs = args; modules = [ ./nixos/desktop/configuration.nix ];