-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
122 lines (114 loc) · 3.61 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
{
description = "NixOS configuration";
nixConfig = {
extra-substituers = [ "https://nix-community.cachix.org" ];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
stylix.url = "github:danth/stylix/ed91a20c84a80a525780dcb5ea3387dddf6cd2de";
agenix.url = "github:ryantm/agenix";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
deploy-rs.url = "github:serokell/deploy-rs";
};
outputs =
{
self,
nixpkgs,
stylix,
home-manager,
agenix,
nixos-hardware,
deploy-rs,
...
}@inputs:
let
server-system = "aarch64-linux";
laptop-system = "x86_64-linux";
in
{
nixosConfigurations = {
nixos-beans =
let
username = "beans";
specialArgs = {
inherit inputs username;
};
system = laptop-system;
pkgs = nixpkgs.legacyPackages.${system};
in
nixpkgs.lib.nixosSystem {
inherit specialArgs system;
modules = [
./hosts/laptop/configuration.nix
./users/${username}/nixos.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = specialArgs;
home-manager.backupFileExtension = "old";
home-manager.users.${username} = import ./users/${username}/home.nix;
}
];
};
pi4 =
let
username = "admin";
specialArgs = {
inherit inputs username;
};
system = server-system;
pkgs = nixpkgs.legacyPackages.${system};
in
nixpkgs.lib.nixosSystem {
inherit specialArgs system;
modules = [
./hosts/pi4/configuration.nix
./users/${username}/nixos.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = specialArgs;
home-manager.backupFileExtension = "old";
home-manager.users.${username} = import ./users/${username}/home.nix;
}
];
};
};
deploy.nodes.server =
let
system = server-system;
pkgs = import nixpkgs { inherit system; };
# nixpkgs with deploy-rs overlay but force the nixpkgs package
deployPkgs = import nixpkgs {
inherit system;
overlays = [
deploy-rs.overlay # or deploy-rs.overlays.default
(self: super: {
deploy-rs = {
inherit (pkgs) deploy-rs;
lib = super.deploy-rs.lib;
};
})
];
};
in
{
hostname = "192.168.1.200";
profiles.system = {
sshOpts = [ "-A" ];
fastConnection = true;
sshUser = "admin";
path = deployPkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.pi4;
user = "root";
};
};
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
};
}