Setting up basic ops
This commit is contained in:
parent
dc1b4e9371
commit
7a356af15d
5 changed files with 150 additions and 3 deletions
|
@ -10,6 +10,7 @@
|
|||
};
|
||||
|
||||
outputs = { self, darwin, nixpkgs, nixpkgs-unstable, home-manager }: {
|
||||
# MacBook configuration: nix-darwin + home-manager
|
||||
darwinConfigurations."nki-macbook" = darwin.lib.darwinSystem rec {
|
||||
system = "aarch64-darwin";
|
||||
modules = [
|
||||
|
@ -18,13 +19,13 @@
|
|||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = { inherit nixpkgs-unstable; };
|
||||
home-manager.extraSpecialArgs = { inherit nixpkgs-unstable; };
|
||||
home-manager.users.nki = import ./home/macbook-home.nix;
|
||||
}
|
||||
];
|
||||
inputs = {
|
||||
inherit darwin nixpkgs-unstable;
|
||||
nixpkgs = nixpkgs-unstable;
|
||||
inherit darwin nixpkgs-unstable;
|
||||
nixpkgs = nixpkgs-unstable;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue