forked from sabo-t/nixos
-
Notifications
You must be signed in to change notification settings - Fork 3
/
flake.nix
executable file
·77 lines (67 loc) · 1.91 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
{
description = "Flake for building my gnome system";
nixConfig = {
substituters = [
"https://cache.nixos.org"
# nix community's cache server
"https://nix-community.cachix.org"
# sjhaleprogrammer's cache server
"https://sjhaleprogrammer.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"sjhaleprogrammer.cachix.org-1:Yxwp/6ytc91ydFbxWE8JunnPioBLb5VbdIn+jnMtHkg="
];
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-24.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
nixpkgs,
nixpkgs-unstable,
home-manager,
...
}@inputs:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
in
{
nixosConfigurations = {
nixos = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
inherit pkgs pkgs-unstable;
};
modules = [
./configuration.nix
./kernel.nix
/etc/nixos/hardware-configuration.nix
./packages.nix
./virtualization.nix
./neovim.nix
# Home Manager configuration
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.samuel = import ./home.nix { inherit pkgs pkgs-unstable inputs; };
}
];
};
};
};
}