Update flake.lock and remove dead input

This commit is contained in:
Antoine Vaure 2024-12-22 21:22:57 +01:00
parent 5add4bae94
commit 29c84e8497
3 changed files with 56 additions and 30 deletions

View file

@ -3,11 +3,14 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-24_05.url = "github:nixos/nixpkgs/nixos-24.05";
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { ... }@inputs:
@ -15,10 +18,10 @@
system = "x86_64-linux";
pkgs = inputs.nixpkgs.legacyPackages.${system};
pkgs-unstable = pkgs;
pkgs-24_05 = inputs.nixpkgs-24_05.legacyPackages.${system};
nixgl = inputs.nixgl.packages.${system};
username = "ant";
variant = "default";
username = "anvaure";
variant = "allegro";
in {
homeConfigurations.${username} = inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
@ -27,11 +30,14 @@
inherit pkgs-unstable;
inherit variant;
inherit username;
inherit pkgs-24_05;
inherit nixgl;
};
modules = [
./home.nix
{
home.packages = [ nixgl.nixGLIntel ];
}
];
};
};