Configuration files for my GNU/Linux installation.
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.
dotfiles/nix-darwin/flake.nix

24 lines
536 B

{
4 months ago
description = "Home Manager configuration";
4 months ago
4 months ago
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
4 months ago
};
4 months ago
outputs = { nixpkgs, home-manager, ... }:
let
system = "aarch64-darwin";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations.elal = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
4 months ago
4 months ago
modules = [ ./home.nix ];
};
};
}