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

28 lines
642 B

{
4 months ago
description = "elal darwin nix config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
4 months ago
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager }:
let
4 months ago
system = "aarch64-darwin";
pkgs = import nixpkgs { inherit system; };
in
{
4 months ago
homeConfigurations.elal = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./home.nix
];
};
4 months ago
packages.${system}.default = self.homeConfigurations.elal.activationPackage;
};
}