This commit is contained in:
biscuit
2025-06-05 13:49:30 -05:00
parent 6af25e5453
commit a3121c0ce0
+3 -3
View File
@@ -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
];