-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
91 lines (81 loc) · 2.21 KB
/
Copy pathflake.nix
File metadata and controls
91 lines (81 loc) · 2.21 KB
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
{
description = "johnos — personal NixOS + home-manager configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
};
outputs = {
self,
nixpkgs,
home-manager,
nur,
plasma-manager,
...
} @ inputs: let
username = "john";
systems = ["x86_64-linux"];
forAllSystems = nixpkgs.lib.genAttrs systems;
pkgsFor = system: nixpkgs.legacyPackages.${system};
mkHost = {
hostname,
system ? "x86_64-linux",
}:
nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {inherit inputs username hostname;};
modules = [
./hosts/${hostname}/configuration.nix
./hosts/${hostname}/hardware-configuration.nix
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs username;};
sharedModules = [
plasma-manager.homeModules.plasma-manager
];
users.${username} = import ./home.nix;
};
nixpkgs.overlays = [nur.overlays.default];
}
];
};
in {
nixosConfigurations.nixos = mkHost {hostname = "nixos";};
formatter = forAllSystems (system: (pkgsFor system).alejandra);
devShells = forAllSystems (system: let
pkgs = pkgsFor system;
in {
default = pkgs.mkShell {
packages = with pkgs; [
alejandra
statix
deadnix
nixd
nix-tree
];
};
});
checks = forAllSystems (system: let
pkgs = pkgsFor system;
in {
fmt = pkgs.runCommand "fmt-check" {nativeBuildInputs = [pkgs.alejandra];} ''
alejandra --check ${self}
touch $out
'';
});
};
}