blob: dad3a4f72ac12a7712edb678d34ee3bf453c41f2 (
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
|
{
inputs = {
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence.url = "github:nix-community/impermanence";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
noshell = {
url = "github:viperML/noshell";
inputs.nixpkgs.follows = "nixpkgs";
};
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
nvf = {
url = "github:notashelf/nvf";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
home-manager,
impermanence,
nixpkgs,
noshell,
nur,
nvf,
stylix,
...
}: let
laptop = import ./machines/laptop.nix;
in {
nixosConfigurations.${laptop.hostname} = nixpkgs.lib.nixosSystem {
system = laptop.system;
specialArgs = {machine = laptop;};
modules = [
home-manager.nixosModules.home-manager
{
nixpkgs.overlays = [nur.overlays.default];
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = {
machine = laptop;
};
home-manager.users =
builtins.mapAttrs
(name: value: value)
(
nixpkgs.legacyPackages.${laptop.system}.lib.genAttrs
laptop.usernames
(
name: {
imports = [
stylix.homeModules.stylix
nvf.homeManagerModules.default
./users/${name}/home.nix
];
}
)
);
}
impermanence.nixosModules.impermanence
noshell.nixosModules.default
./configuration.nix
./hardware-configuration.nix
];
};
};
}
|