-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
86 lines (74 loc) · 2.55 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
78
79
80
81
82
83
84
85
86
{
description = "Nix, NixOS System Flake Configuration";
inputs =
{
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # Nix Packages (Default)
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; # Unstable Nix Packages
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11"; # Unstable Nix Packages
nixos-hardware.url = "github:nixos/nixos-hardware/master"; # Hardware Specific Configurations
# User Environment Manager
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# Stable User Environment Manager
home-manager-stable = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs-stable";
};
# Agenix
agenix = {
url = "github:ryantm/agenix";
};
# NUR Community Packages
nur = {
url = "github:nix-community/NUR";
# Requires "nur.nixosModules.nur" to be added to the host modules
};
# Fixes OpenGL With Other Distros.
nixgl = {
url = "github:guibou/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
# Neovim
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
# Neovim
nixvim-stable = {
url = "github:nix-community/nixvim/nixos-24.11";
inputs.nixpkgs.follows = "nixpkgs-stable";
};
# KDE Plasma User Settings Generator
plasma-manager = {
url = "github:pjones/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "nixpkgs";
};
};
outputs = inputs @ { self, nixpkgs, nixpkgs-stable, nixpkgs-unstable, nixos-hardware, home-manager, home-manager-stable, nur, nixgl, nixvim, nixvim-stable, plasma-manager, agenix, ... }: # Function telling flake which inputs to use
let
# Variables Used In Flake
vars = {
user = "exil0681";
location = "$HOME/.setup";
terminal = "kitty";
editor = "nvim";
};
in
{
nixosConfigurations = (
import ./hosts {
inherit (nixpkgs) lib;
inherit inputs nixpkgs nixpkgs-stable nixpkgs-unstable nixos-hardware home-manager nur nixvim plasma-manager agenix vars; # Inherit inputs
}
);
homeConfigurations = (
import ./nix {
inherit (nixpkgs) lib;
inherit inputs nixpkgs nixpkgs-stable nixpkgs-unstable home-manager nixgl agenix vars;
}
);
};
}