blob: 9d423401e3322e01240cb219f1a217bb6bd53ad3 (
plain) (
blame)
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
|
{
description = "Based and Minimal Flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
hjem = {
url = "github:feel-co/hjem";
inputs.nixpkgs.follows = "nixpkgs";
};
my-slstatus = {
url = "git://git.skullheadx.com/slstatus.git";
inputs.nixpkgs.follows = "nixpkgs";
};
my-surf = {
url = "git://git.skullheadx.com/surf.git";
inputs.nixpkgs.follows = "nixpkgs";
};
my-dwm = {
url = "git://git.skullheadx.com/dwm.git";
inputs.nixpkgs.follows = "nixpkgs";
};
my-st = {
url = "git://git.skullheadx.com/st.git";
inputs.nixpkgs.follows = "nixpkgs";
};
my-dmenu = {
url = "git://git.skullheadx.com/dmenu.git";
inputs.nixpkgs.follows = "nixpkgs";
};
nvf = {
url = "github:notashelf/nvf";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
hjem,
my-slstatus,
my-surf,
my-dwm,
my-st,
my-dmenu,
nvf,
} @ inputs: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
customNeovim = nvf.lib.neovimConfiguration {
inherit pkgs;
modules = [./nvf/nvf.nix];
};
in {
nixosConfigurations.nepsis = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs customNeovim;};
modules = [
hjem.nixosModules.default
./linux-common.nix
./hosts/nepsis/configuration.nix
./overlays.nix
];
};
nixosConfigurations.icon = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs customNeovim;};
modules = [
hjem.nixosModules.default
./linux-common.nix
./hosts/icon/configuration.nix
./overlays.nix
];
};
packages.${system}.my-neovim = customNeovim.neovim;
};
}
|