ags icon indicating copy to clipboard operation
ags copied to clipboard

Nix Flake doesnt work properly.

Open 999Denis opened this issue 8 months ago • 2 comments

Error: error: path '/nix/store/iiv99bfisin2wricg2fbzgdyav72g79g-source/ags' does not exist

In Config.nix or Home.nix i haven't add anything per now

Please someone help me

My Flake:

{
 description = "Flake";


 inputs = {

 	home-manager = {
		url = "github:nix-community/home-manager";
		inputs.nixpkgs.follows = "nixpkgs";
 	};

 	nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";

	ags.url = "github:aylur/ags/v1";

 	zen-browser.url = "github:cutekylie/zen-browser-flake";

	hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";

   hyprland-plugins = {
     url = "github:999Denis/Hyprland-Plugins";
     inputs.hyprland.follows = "hyprland";
   };

   hyprland-hyprspace = {
     url = "github:999Denis/Hyprspace";
     inputs.hyprland.follows = "hyprland";
   };

   matugen.url = "github:999Denis/Matugen?ref=v2.2.0";

   lf-icons = {
     url = "github:999Denis/LF-FileManager";
     flake = false;
   };
};

 outputs = { self, nixpkgs, home-manager, hyprland, ... }@inputs: 
 let
   system = "x86_64-linux";
   pkgs = nixpkgs.legacyPackages.${system};
 in
 
 {
   nixosConfigurations = {
       system = nixpkgs.lib.nixosSystem {
             specialArgs = {inherit inputs;};
             modules = [
               ./system/config.nix
             	];
       	};    
    	};
 	};
}

999Denis avatar Apr 15 '25 18:04 999Denis

ags.url = "github:Aylur/ags/v1";

tsssni avatar Apr 18 '25 13:04 tsssni

oops sorry my bad, i will try and if works i close, if not i will send the error

999Denis avatar Apr 18 '25 13:04 999Denis