New beginning
This commit is contained in:
parent
432c85e800
commit
8e64cc68b3
30 changed files with 404 additions and 507 deletions
27
nix/flake.nix
Normal file
27
nix/flake.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
inputs = {
|
||||
darwin.inputs.nixpkgs.follows = "nixpkgs";
|
||||
darwin.url = "github:lnl7/nix-darwin";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
home-manager.url = "github:nix-community/home-manager/release-23.11";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||
};
|
||||
|
||||
outputs = inputs @ {
|
||||
self,
|
||||
darwin,
|
||||
home-manager,
|
||||
nixpkgs,
|
||||
...
|
||||
}: let
|
||||
darwin-system = import ./system/darwin.nix {inherit inputs;};
|
||||
in {
|
||||
darwinConfigurations = {
|
||||
TobAir = darwin-system {
|
||||
system = "aarch64-darwin";
|
||||
username = "tobi";
|
||||
hostname = "TobAir";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue