blob: 0a45fe5b35601b89821cf2ef7a8fc6abad6ec366 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{ self, unstable, nixpkgs-neovim-fix, ... } @ inputs:
let
# TODO See: https://github.com/neovim/neovim/pull/21711
# TODO See: https://github.com/NixOS/nixpkgs/pull/214231
# neovim-fix = self: super: {
# inherit (nixpkgs-neovim-fix.legacyPackages.${super.system})
# neovim neovim-unwrapped;
# };
in
{
"sefidel@alpha" = self.lib.mkHome {
username = "sefidel";
hostname = "alpha";
pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default (import ../overlays/neovim.nix) neovim.overlay ]; };
extraModules = [
./profiles/populate.nix
./profiles/base
./profiles/browsing
./profiles/development
./profiles/communication
./profiles/multimedia
./profiles/research
inputs.sops-nix.homeManagerModules.sops
];
version = "22.05";
};
"sefidel@kompakt" = self.lib.mkHome {
username = "sefidel";
hostname = "kompakt";
pkgs = import unstable { system = "aarch64-linux"; overlays = with inputs; [ rust.overlays.default (import ../overlays/neovim.nix) neovim.overlay ]; };
extraModules = [
./profiles/populate.nix
./profiles/base
./profiles/browsing
./profiles/development
./profiles/communication
./profiles/multimedia
./profiles/research
];
version = "23.05";
};
}
|