blob: 4aa6f6e042042f22006cb06d1a3eed0d725867f6 (
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
|
{
description = "My NixOS configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence.url = "github:nix-community/impermanence";
nur.url = "github:nix-community/NUR";
nix-index.url = "github:Mic92/nix-index-database";
wallpapers = {
url = "github:Baitinq/Wallpapers";
flake = false;
};
};
outputs = inputs @ { self, nixpkgs, home-manager, ... }:
let user = "baitinq";
in
{
nixosConfigurations = import ./hosts {
inherit (nixpkgs) lib;
inherit inputs nixpkgs home-manager user;
};
};
}
|