For users that already use home-manager, this shouldn't change anything (they just have to pin the home-manager input to their own version). However for users that currently do not use home-manager this will allow them to not care about it. This way, home-manager will become an 'implementation detail'
16 lines
400 B
Nix
16 lines
400 B
Nix
{
|
|
description = "NixOS-95: To Style your NixOS to look like Windows95";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager,... }: {
|
|
nixosModules.default = import ./nixos95 { inherit home-manager; };
|
|
};
|
|
}
|
|
|