blob: 29aa73c7cd8f2bedf85e59fd76e71669f6597025 (
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
34
35
|
inputs@{ self, ... }:
{ system ? "x86_64-linux"
, username ? "fcuny"
, hostname
, stateVersion ? "22.05"
,
}:
let
naersk = inputs.naersk.lib."${system}";
in
inputs.home-manager.lib.homeManagerConfiguration {
inherit system;
inherit username;
inherit stateVersion;
homeDirectory = "/home/${username}";
pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [
inputs.emacs-overlay.overlay
inputs.nur.overlay
inputs.naersk.overlay
inputs.rust.overlays.default
inputs.gh-ssh-keys.overlay
(final: prev:
{
tools = import "${self}/tools" { pkgs = prev; inherit naersk; };
})
];
};
configuration.imports =
[ "${self}/home" "${self}/hosts/${hostname}/home.nix" ];
}
|