From 8192123ad3fa429a598a2f19db67db7721ac08ec Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Tue, 22 Oct 2024 01:52:09 -0700 Subject: Remove unstable references --- flake.nix | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index e263287..7cd2744 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ disko = { url = "github:nix-community/disko"; - inputs.nixpkgs.follows = "nixpkgs-unstable"; + inputs.nixpkgs.follows = "nixpkgs"; }; home-manager-stable = { @@ -13,32 +13,32 @@ inputs.nixpkgs.follows = "nixpkgs-stable"; }; - home-manager-unstable = { + home-manager = { url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs-unstable"; + inputs.nixpkgs.follows = "nixpkgs"; }; nixos-hardware.url = "github:nixos/nixos-hardware"; nixpkgs-stable.url = "github:nixos/nixpkgs/release-24.05"; - nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; sops-nix = { url = "github:Mic92/sops-nix"; - inputs.nixpkgs.follows = "nixpkgs-unstable"; + inputs.nixpkgs.follows = "nixpkgs"; }; }; - outputs = inputs@{ home-manager-stable, home-manager-unstable, nixos-hardware, nixpkgs-stable, nixpkgs-unstable, sops-nix, ... }: { + outputs = inputs@{ home-manager-stable, home-manager, nixos-hardware, nixpkgs-stable, nixpkgs, sops-nix, ... }: { nixosConfigurations = { - arrakis = nixpkgs-unstable.lib.nixosSystem rec { + arrakis = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = { - pkgs = import nixpkgs-unstable { + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; overlays = [(import ./pkgs)]; @@ -52,7 +52,7 @@ modules = [ ./hosts/arrakis - home-manager-unstable.nixosModules.home-manager { + home-manager.nixosModules.home-manager { home-manager.sharedModules = [ sops-nix.homeManagerModules.sops ]; home-manager.users.root = import ./home/root/arrakis.nix; home-manager.users.nipsy = import ./home/nipsy/arrakis.nix; @@ -61,11 +61,11 @@ ]; }; - darkstar = nixpkgs-unstable.lib.nixosSystem rec { + darkstar = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = { - pkgs = import nixpkgs-unstable { + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; overlays = [(import ./pkgs)]; @@ -79,7 +79,7 @@ modules = [ ./hosts/darkstar - home-manager-unstable.nixosModules.home-manager { + home-manager.nixosModules.home-manager { home-manager.users.root = import ./home/root/darkstar.nix; home-manager.users.nipsy = import ./home/nipsy/darkstar.nix; } @@ -87,11 +87,11 @@ ]; }; - ginaz = nixpkgs-unstable.lib.nixosSystem rec { + ginaz = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = { - pkgs = import nixpkgs-unstable { + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; overlays = [(import ./pkgs)]; @@ -105,7 +105,7 @@ modules = [ ./hosts/ginaz - home-manager-unstable.nixosModules.home-manager { + home-manager.nixosModules.home-manager { home-manager.sharedModules = [ sops-nix.homeManagerModules.sops ]; home-manager.users.root = import ./home/root/ginaz.nix; home-manager.users.nipsy = import ./home/nipsy/ginaz.nix; @@ -115,11 +115,11 @@ ]; }; - kaitain = nixpkgs-unstable.lib.nixosSystem rec { + kaitain = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = { - pkgs = import nixpkgs-unstable { + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; overlays = [(import ./pkgs)]; @@ -133,18 +133,18 @@ modules = [ ./hosts/kaitain - home-manager-unstable.nixosModules.home-manager { + home-manager.nixosModules.home-manager { home-manager.users.root = import ./home/root/kaitain.nix; home-manager.users.nipsy = import ./home/nipsy/kaitain.nix; } ]; }; - richese = nixpkgs-unstable.lib.nixosSystem rec { + richese = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = { - pkgs = import nixpkgs-unstable { + pkgs = import nixpkgs { inherit system; config.allowUnfree = true; overlays = [(import ./pkgs)]; @@ -158,7 +158,7 @@ modules = [ ./hosts/richese - home-manager-unstable.nixosModules.home-manager { + home-manager.nixosModules.home-manager { home-manager.users.root = import ./home/root/richese.nix; home-manager.users.nipsy = import ./home/nipsy/richese.nix; } -- cgit v1.2.3