27 lines
No EOL
669 B
Nix
27 lines
No EOL
669 B
Nix
{
|
|
description = "Dotfile manager";
|
|
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";
|
|
};
|
|
dotfiles = {
|
|
url = "git.ood.ovh:hactarus/dotfiles";
|
|
flake = false;
|
|
};
|
|
outputs = { self, nixpkgs, home-manager, ... } @inputs: {
|
|
homeConfigurations.foodogsquared = home-manager.lib.homeManagerConfiguration {
|
|
# The home-manager configuration.
|
|
modules = [ ./home.nix ];
|
|
|
|
extraSpecialArgs = {
|
|
inherit (inputs) dotfiles;
|
|
};
|
|
};
|
|
};
|
|
} |