37 lines
925 B
Nix
37 lines
925 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.11";
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = {self, nixpkgs, home-manager, nur, ...}:
|
|
let
|
|
packages = import ./pkgs;
|
|
in
|
|
{
|
|
nixosConfigurations.posixlycorrect = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ( import ./base ) ];
|
|
};
|
|
|
|
homeConfigurations."fabian@posixlycorrect" = home-manager.lib.homeManagerConfiguration {
|
|
system = "x86_64-linux";
|
|
configuration = import ./home {inherit self nixpkgs;};
|
|
username = "fabian";
|
|
homeDirectory = "/home/fabian";
|
|
stateVersion = "21.11";
|
|
};
|
|
|
|
packages.x86_64-linux = packages nixpkgs.legacyPackages.x86_64-linux;
|
|
|
|
overlay = self: super: {
|
|
local = packages super;
|
|
};
|
|
};
|
|
}
|