-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
65 lines (50 loc) · 1.32 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
{
description = "gvolpe's Home Manager & NixOS configurations";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-nautilus-gtk3.url = "github:NixOS/nixpkgs?ref=37bd398";
nurpkgs.url = "github:nix-community/NUR";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
homeage = {
url = "github:jordanisaacs/homeage?ref=323037e";
inputs.nixpkgs.follows = "nixpkgs";
};
neovim-flake.url = "github:GuruPoo/neovim-flake";
# Fish shell
fish-bobthefish-theme = {
url = "github:gvolpe/theme-bobthefish";
flake = false;
};
fish-keytool-completions = {
url = "github:ckipp01/keytool-fish-completions";
flake = false;
};
# Github Markdown ToC generator
gh-md-toc = {
url = "github:ekalinin/github-markdown-toc";
flake = false;
};
# LaTeX stuff
tex2nix = {
url = "github:Mic92/tex2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs:
let system = "x86_64-linux"; in
{
homeConfigurations = (
import ./outputs/home-conf.nix {
inherit inputs system;
}
);
nixosConfigurations = (
import ./outputs/nixos-conf.nix {
inherit inputs system;
}
);
};
}