blob: b94f0dc80184df47ad026626c3470de95706580a (
plain)
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
|
inputs:
{ config, lib, ... }:
{
imports = [
(import ./commandline.nix inputs)
(import ./localization.nix inputs)
(import ./nix.nix inputs)
(import ./ssh.nix inputs)
(import ./theme.nix inputs)
(import ./tinc.nix inputs)
(import ./unfree.nix inputs)
(import ./vim.nix inputs)
(import ./zram.nix inputs)
];
nixpkgs.overlays = [
(final: prev: {
# Inheriting config allows adding unfree package using the option
# nixpkgs.config.allowUnfreePredicate
unstable = import inputs.nixpkgs-unstable {
inherit (config.nixpkgs) system config;
};
})
inputs.nur.overlay
];
}
|