flake: add unstable
This commit is contained in:
		
							parent
							
								
									9828e1366d
								
							
						
					
					
						commit
						2a4f056aaa
					
				
					 3 changed files with 27 additions and 1 deletions
				
			
		
							
								
								
									
										16
									
								
								flake.lock
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										16
									
								
								flake.lock
									
										
									
										generated
									
									
									
								
							| 
						 | 
					@ -469,6 +469,21 @@
 | 
				
			||||||
        "type": "indirect"
 | 
					        "type": "indirect"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    "nixpkgs-unstable": {
 | 
				
			||||||
 | 
					      "locked": {
 | 
				
			||||||
 | 
					        "lastModified": 1726937504,
 | 
				
			||||||
 | 
					        "narHash": "sha256-bvGoiQBvponpZh8ClUcmJ6QnsNKw0EMrCQJARK3bI1c=",
 | 
				
			||||||
 | 
					        "owner": "NixOS",
 | 
				
			||||||
 | 
					        "repo": "nixpkgs",
 | 
				
			||||||
 | 
					        "rev": "9357f4f23713673f310988025d9dc261c20e70c6",
 | 
				
			||||||
 | 
					        "type": "github"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "original": {
 | 
				
			||||||
 | 
					        "id": "nixpkgs",
 | 
				
			||||||
 | 
					        "ref": "nixos-unstable",
 | 
				
			||||||
 | 
					        "type": "indirect"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "plymouth-themes": {
 | 
					    "plymouth-themes": {
 | 
				
			||||||
      "flake": false,
 | 
					      "flake": false,
 | 
				
			||||||
      "locked": {
 | 
					      "locked": {
 | 
				
			||||||
| 
						 | 
					@ -512,6 +527,7 @@
 | 
				
			||||||
        "nix-index-database": "nix-index-database",
 | 
					        "nix-index-database": "nix-index-database",
 | 
				
			||||||
        "nixos-mailserver": "nixos-mailserver",
 | 
					        "nixos-mailserver": "nixos-mailserver",
 | 
				
			||||||
        "nixpkgs": "nixpkgs",
 | 
					        "nixpkgs": "nixpkgs",
 | 
				
			||||||
 | 
					        "nixpkgs-unstable": "nixpkgs-unstable",
 | 
				
			||||||
        "plymouth-themes": "plymouth-themes",
 | 
					        "plymouth-themes": "plymouth-themes",
 | 
				
			||||||
        "ranger-icons": "ranger-icons",
 | 
					        "ranger-icons": "ranger-icons",
 | 
				
			||||||
        "tlauncher": "tlauncher",
 | 
					        "tlauncher": "tlauncher",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,6 +2,8 @@
 | 
				
			||||||
  description = "My system config";
 | 
					  description = "My system config";
 | 
				
			||||||
  inputs = {
 | 
					  inputs = {
 | 
				
			||||||
    nixpkgs.url = "nixpkgs/nixos-24.05";
 | 
					    nixpkgs.url = "nixpkgs/nixos-24.05";
 | 
				
			||||||
 | 
					    nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    home-manager.url = "github:nix-community/home-manager/release-24.05";
 | 
					    home-manager.url = "github:nix-community/home-manager/release-24.05";
 | 
				
			||||||
    home-manager.inputs.nixpkgs.follows = "nixpkgs";
 | 
					    home-manager.inputs.nixpkgs.follows = "nixpkgs";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -157,7 +159,10 @@
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
        phantom = lib.nixosSystem {
 | 
					        phantom = lib.nixosSystem {
 | 
				
			||||||
          inherit system specialArgs;
 | 
					          inherit system specialArgs;
 | 
				
			||||||
          modules = [ ./hosts/phantom ];
 | 
					          modules = [
 | 
				
			||||||
 | 
					            { nixpkgs.pkgs = pkgs; }
 | 
				
			||||||
 | 
					            ./hosts/phantom
 | 
				
			||||||
 | 
					          ];
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,6 +2,7 @@
 | 
				
			||||||
rec {
 | 
					rec {
 | 
				
			||||||
  all = [
 | 
					  all = [
 | 
				
			||||||
    scripts
 | 
					    scripts
 | 
				
			||||||
 | 
					    unstable
 | 
				
			||||||
    themes
 | 
					    themes
 | 
				
			||||||
    new-packages
 | 
					    new-packages
 | 
				
			||||||
    patches
 | 
					    patches
 | 
				
			||||||
| 
						 | 
					@ -11,6 +12,10 @@ rec {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  scripts = (import ../scripts);
 | 
					  scripts = (import ../scripts);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  unstable = final: prev: {
 | 
				
			||||||
 | 
					    unstable = import inputs.nixpkgs-unstable { inherit (final) system config; };
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  themes = (
 | 
					  themes = (
 | 
				
			||||||
    final: prev: {
 | 
					    final: prev: {
 | 
				
			||||||
      papirus_red = (final.papirus-icon-theme.override { color = "red"; });
 | 
					      papirus_red = (final.papirus-icon-theme.override { color = "red"; });
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue