-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
75 lines (67 loc) · 1.99 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
{
description = "NixOS system config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
impermanence.url = "github:nix-community/impermanence";
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs";
vscode-server.url = "github:msteen/nixos-vscode-server";
vscode-server.inputs.nixpkgs.follows = "nixpkgs";
devenv.url = "github:cachix/devenv/latest";
devenv.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: {
nixosConfigurations = let
defaultModules = [
./modules
inputs.impermanence.nixosModules.impermanence
inputs.home-manager.nixosModules.home-manager
inputs.agenix.nixosModules.default
];
specialArgs = {inherit inputs;};
in {
matebook = inputs.nixpkgs.lib.nixosSystem {
inherit specialArgs;
system = "x86_64-linux";
modules =
defaultModules
++ [
inputs.nixos-hardware.nixosModules.common-cpu-intel
inputs.nixos-hardware.nixosModules.common-gpu-nvidia-disable
./machines/matebook/configuration.nix
];
};
pc = inputs.nixpkgs.lib.nixosSystem {
inherit specialArgs;
system = "x86_64-linux";
modules =
defaultModules
++ [
./machines/pc/configuration.nix
];
};
};
devShells.x86_64-linux.default = let
pkgs = import inputs.nixpkgs {
system = "x86_64-linux";
};
in
inputs.devenv.lib.mkShell {
inherit inputs pkgs;
modules = [
{
packages = with pkgs; [
alejandra
];
pre-commit.hooks = {
alejandra.enable = true;
markdownlint.enable = true;
};
}
];
};
};
}