this repo has no description
at toolbox 18 lines 436 B view raw
1{ 2 inputs = { 3 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 4 home-manager = { 5 url = "github:nix-community/home-manager"; 6 inputs.nixpkgs.follows = "nixpkgs"; 7 }; 8 }; 9 10 outputs = 11 { nixpkgs, home-manager, ... }: 12 { 13 homeConfigurations.alexandre = home-manager.lib.homeManagerConfiguration { 14 pkgs = nixpkgs.legacyPackages.x86_64-linux; 15 modules = [ ./home.nix ]; 16 }; 17 }; 18}