This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
77 lines (69 loc) · 1.79 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ nixpkgs
, nixos-hardware
, pre-commit-hooks
, home-manager
, ...
}:
let
system = "x86_64-linux";
username = "emneo";
pkgs-settings = {
inherit system;
config.allowUnfree = true;
};
pkgs = (import nixpkgs pkgs-settings);
mod-hardware = with nixos-hardware.nixosModules; [
framework-12th-gen-intel
];
home-manager-conf = {
useGlobalPkgs = true;
useUserPackages = true;
users.${username} = import ./home;
extraSpecialArgs = {
inherit username system;
};
};
in
rec {
formatter.${system} = pkgs.nixpkgs-fmt;
nixosConfigurations = {
jiyu = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
./hardware-configuration.nix
home-manager.nixosModules.home-manager
{ home-manager = home-manager-conf; }
] ++ mod-hardware;
};
};
checks.${system}.pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixpkgs-fmt = {
enable = true;
name = pkgs.lib.mkForce "Nix files format";
};
};
};
devShells.${system}.default = pkgs.mkShell {
inherit (checks.${system}.pre-commit-check) shellHook;
};
};
}