-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
145 lines (135 loc) · 4.41 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
description = "You new nix config";
inputs = {
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
hardware.url = "github:nixos/nixos-hardware";
# Home manager
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# TODO: Add any other flake you might need
# Shameless plug: looking for a way to nixify your themes and make
# everything match nicely? Try nix-colors!
# nix-colors.url = "github:misterio77/nix-colors";
};
outputs =
{
self,
nixpkgs,
home-manager,
...
}@inputs:
let
forAllSystems = nixpkgs.lib.genAttrs systems;
systems = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
in
rec {
# Your custom packages and modifications
overlays = {
default = import ./overlay { inherit inputs; };
};
# Reusable nixos modules you might want to export
# These are usually stuff you would upstream into nixpkgs
nixosModules = import ./modules/nixos;
# Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager
homeManagerModules = import ./modules/home-manager;
# Devshell for bootstrapping
# Acessible through 'nix develop' or 'nix-shell' (legacy)
devShells = forAllSystems (system: {
default = legacyPackages.${system}.callPackage ./shell.nix { };
});
# Reexport nixpkgs with our overlays applied
# Acessible on our configurations, and through nix build, shell, run, etc.
legacyPackages = forAllSystems (
system:
import inputs.nixpkgs {
inherit system;
overlays = builtins.attrValues overlays;
}
);
nixosConfigurations = {
"br1anchen@dune" = nixpkgs.lib.nixosSystem {
pkgs = legacyPackages.x86_64-linux;
specialArgs = {
inherit inputs;
}; # Pass flake inputs to our config
modules = (builtins.attrValues nixosModules) ++ [
# > Our main nixos configuration file <
./nixos/configuration.nix
];
};
};
homeConfigurations = {
"brian" = home-manager.lib.homeManagerConfiguration {
pkgs = legacyPackages.x86_64-linux;
extraSpecialArgs = {
inherit inputs;
}; # Pass flake inputs to our config
modules = (builtins.attrValues homeManagerModules) ++ [
{
home = {
username = "brian";
homeDirectory = "/home/brian";
stateVersion = "22.05";
sessionVariables = {
EDITOR = "nvim";
TERMINAL = "wezterm";
};
};
}
# > Our main home-manager configuration file <
./home-manager/home.nix
];
};
"br1anchen" = home-manager.lib.homeManagerConfiguration {
pkgs = legacyPackages.aarch64-darwin;
extraSpecialArgs = {
inherit inputs;
}; # Pass flake inputs to our config
modules = (builtins.attrValues homeManagerModules) ++ [
{
home = {
username = "br1anchen";
homeDirectory = "/Users/br1anchen";
stateVersion = "22.05";
sessionVariables = {
EDITOR = "nvim";
TERMINAL = "wezterm";
};
};
}
# > Our main home-manager configuration file <
./home-manager/home.nix
];
};
"deck" = home-manager.lib.homeManagerConfiguration {
pkgs = legacyPackages.x86_64-linux;
extraSpecialArgs = {
inherit inputs;
}; # Pass flake inputs to our config
modules = (builtins.attrValues homeManagerModules) ++ [
{
home = {
username = "deck";
homeDirectory = "/home/deck";
stateVersion = "22.05";
sessionVariables = {
EDITOR = "nvim";
TERMINAL = "wezterm";
};
};
}
# > Our main home-manager configuration file <
./home-manager/home.nix
];
};
};
};
}