-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
56 lines (49 loc) · 1.31 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
{
description = "Dogthie's basic stuff :3";
# TODO: disco
# TODO: secure boot
nixConfig = {
allow-import-from-derivation = true;
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nvchad4nix = {
url = "github:NvChad/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
niri = {
url = "github:sodiboo/niri-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, ... }@inputs:
let
system = "x86_64-linux";
lib = nixpkgs.lib;
pkgs = import nixpkgs { inherit system; config.allowUnfree = true; };
extraSpecialArgs = {inherit system; inherit inputs; };
in {
system = [ "x86_64-linux" ];
nixosConfigurations = {
wuffmachine = lib.nixosSystem {
inherit system;
modules = [
./config.nix
./hardware.nix
home-manager.nixosModules.home-manager {
home-manager = {
inherit extraSpecialArgs;
useGlobalPkgs = true;
useUserPackages = true;
users.dogth = import ./home.nix;
};
}
];
};
};
};
}