dotfiles/modules/nix.nix
Lucy von Overheidt 4d269a9e8d wallpaper
2025-09-09 20:49:56 +02:00

18 lines
398 B
Nix

{ ... }:
{
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
substituters = [
"https://nix-gaming.cachix.org"
"https://attic.mildlyfunctional.gay/nixbsd"
];
trusted-public-keys = [
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
"nixbsd:gwcQlsUONBLrrGCOdEboIAeFq9eLaDqfhfXmHZs1mgc="
];
};
}