tangled
alpha
login
or
join now
adjoly.fr
/
nixos-config
0
fork
atom
โ๏ธ My personnal NixOS configuration
nix-flake
nixos-configuration
linux
dotfiles
flake
nix
nix-config
nixos
nixos-flake
linux-desktop
0
fork
atom
overview
issues
pulls
2
pipelines
ใ๐๏ธใ wip: moved to lix
adjoly.fr
2 months ago
4af00c38
b380412a
+12
-1
1 changed file
expand all
collapse all
unified
split
hosts
home.nix
+12
-1
hosts/home.nix
···
32
32
programs.zsh.enable = true;
33
33
nix.settings = {
34
34
trusted-users = [ "@wheel" ];
35
35
-
trusted-substituters = [ "https://prismlauncher.cachix.org" ];
35
35
+
trusted-substituters = [ "https://prismlauncher.cachix.org" ];
36
36
trusted-public-keys = [
37
37
"prismlauncher.cachix.org-1:9/n/FGyABA2jLUVfY+DEp4hKds/rwO+SCOtbOkDzd+c="
38
38
];
39
39
};
40
40
+
nixpkgs.overlays = [
41
41
+
(final: prev: {
42
42
+
inherit (prev.lixPackageSets.stable)
43
43
+
nixpkgs-review
44
44
+
nix-eval-jobs
45
45
+
nix-fast-build
46
46
+
colmena
47
47
+
;
48
48
+
})
49
49
+
];
40
50
51
51
+
nix.package = pkgs.lixPackageSets.stable.lix;
41
52
}