-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
64 lines (62 loc) · 1.9 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
description = "Darwin system flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
emacs-darwin = {
url = "github:c4710n/nix-darwin-emacs";
inputs.nixpkgs.follows = "nixpkgs";
};
ghostty.url = "github:ghostty-org/ghostty";
ghostty-hm.url = "github:clo4/ghostty-hm-module";
};
outputs = inputs@{ self, darwin, home-manager, nixpkgs, emacs-overlay, emacs-darwin, ghostty, ghostty-hm }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
overlays = [ emacs-overlay.overlay ];
config = {
allowUnfree = true;
};
};
in {
# Build darwin flake using:
# $ darwin-rebuild build --flake .#dpontoriero-mlt
darwinConfigurations."dpontoriero-mlt" = darwin.lib.darwinSystem {
modules = [
./darwin.nix
home-manager.darwinModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.dpontoriero = import ./home.nix;
users.users.dpontoriero.home = "/Users/dpontoriero";
home-manager.extraSpecialArgs = { inherit ghostty; };
}
ghostty-hm.homeModules.default
];
specialArgs = { inherit inputs; };
};
homeConfigurations."dpontoriero@5b45ab8-lcedt" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./home.nix
./linux.nix
ghostty-hm.homeModules.default
];
extraSpecialArgs = { inherit ghostty; };
};
};
}