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 = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager.url = "github:nix-community/home-manager"; 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.url = "github:aylur/ags";
ags.inputs.nixpkgs.follows = "nixpkgs"; ags.inputs.nixpkgs.follows = "nixpkgs";
@@ -30,7 +30,7 @@
info = import ./info.nix; info = import ./info.nix;
lib = nixpkgs.lib; lib = nixpkgs.lib;
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system}; # alternative, without overlays. Unused.
args = args =
{ {
inherit inputs system; inherit inputs system;
@@ -39,8 +39,8 @@
in { in {
nixosConfigurations = { nixosConfigurations = {
desktop = lib.nixosSystem { desktop = lib.nixosSystem {
specialArgs = args;
inherit system; inherit system;
specialArgs = args;
modules = [ modules = [
./nixos/desktop/configuration.nix ./nixos/desktop/configuration.nix
]; ];