Files

26 lines
741 B
Nix

{
description = "Core nixos and home-manager modules for use across systems";
inputs = {
nixpkgs.url = "nixpkgs/nixos-26.05";
home-manager = {
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations = {
shell = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./home/shell.nix
];
};
};
};
}