You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
575 B
24 lines
575 B
{
|
|
description = "kejadlen/dotfiles";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
# nixpkgs.url = "flake:nixpkgs";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { home-manager, nixpkgs, ... }: {
|
|
homeConfigurations = {
|
|
macos = home-manager.lib.homeManagerConfiguration {
|
|
system = "x86_64-darwin";
|
|
homeDirectory = "/Users/alpha";
|
|
username = "alpha";
|
|
configuration.imports = [ ./dev.nix ];
|
|
};
|
|
};
|
|
};
|
|
}
|