blob: 41ad456274ccc657a3a2cb7b6bdac45570846dc5 (
plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
{
description = "Simen Andre's dotfiles configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nix-darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
config-nvim = {
url = "github:simenandre/config.nvim";
flake = false;
};
dina = {
url = "github:dinacomputer/cli";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
nix-darwin,
home-manager,
config-nvim,
dina,
}:
let
# flakeAttr must match the darwinConfigurations attribute this machine is
# built from; the rebuild/update aliases in modules/home/zsh.nix use it so
# each machine targets its own configuration.
mkHomeModules = { username, flakeAttr ? "default" }: [
./modules/home
{
home.username = username;
home.file.".config/nvim".source = config-nvim;
_module.args.flakeAttr = flakeAttr;
}
];
mkDarwin =
{
username,
flakeAttr,
hostName ? null,
}:
nix-darwin.lib.darwinSystem {
system = "aarch64-darwin";
modules = [
./modules/darwin
home-manager.darwinModules.home-manager
{
# Primary user for system defaults and homebrew
system.primaryUser = username;
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "bak";
home-manager.extraSpecialArgs = { inherit dina; };
home-manager.users.${username} = {
imports = mkHomeModules { inherit username flakeAttr; };
};
}
]
++ nixpkgs.lib.optional (hostName != null) {
networking = {
inherit hostName;
computerName = hostName;
localHostName = hostName;
};
};
};
in
{
darwinConfigurations = {
"makkie" = mkDarwin {
username = "simenandre";
flakeAttr = "makkie";
hostName = "makkie";
};
"default" = mkDarwin {
username = "cobraz";
flakeAttr = "default";
};
};
nixosConfigurations."nixbox" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/nixbox/hardware-configuration.nix
./modules/nixos
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "bak";
home-manager.extraSpecialArgs = { inherit dina; };
home-manager.users.simenandre = { imports = mkHomeModules { username = "simenandre"; }; };
}
];
};
homeConfigurations."simenandre" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
extraSpecialArgs = { inherit dina; };
modules = mkHomeModules { username = "simenandre"; };
};
homeConfigurations."simenandre@aarch64-linux" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."aarch64-linux";
extraSpecialArgs = { inherit dina; };
modules = mkHomeModules { username = "simenandre"; };
};
};
}
|