mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 16:58:03 +00:00
27 lines
633 B
Nix
27 lines
633 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { nixpkgs, home-manager, ... }@inputs: {
|
|
nixosConfigurations.desktop = nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
# The NixOS configuration.
|
|
./configuration.nix
|
|
];
|
|
};
|
|
|
|
homeConfigurations.foodogsquared = home-manager.lib.homeManagerConfiguration {
|
|
# The home-manager configuration.
|
|
modules = [ ./home.nix ];
|
|
};
|
|
};
|
|
}
|