dotfiles/modules/nix.nix

19 lines
398 B
Nix
Raw Normal View History

2025-09-09 20:49:56 +02:00
{ ... }:
{
2025-09-09 18:03:42 +02:00
nix.settings = {
2025-09-09 20:49:56 +02:00
experimental-features = [
"nix-command"
"flakes"
];
2025-09-09 18:03:42 +02:00
2025-09-09 20:49:56 +02:00
substituters = [
"https://nix-gaming.cachix.org"
"https://attic.mildlyfunctional.gay/nixbsd"
];
trusted-public-keys = [
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
"nixbsd:gwcQlsUONBLrrGCOdEboIAeFq9eLaDqfhfXmHZs1mgc="
];
2025-09-09 18:03:42 +02:00
};
}