Skip to content

Commit

Permalink
nix: Configure substituters for all machines
Browse files Browse the repository at this point in the history
  • Loading branch information
juanibiapina committed Dec 30, 2024
1 parent 0b35efb commit ca2f859
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions nix/hosts/babbel/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
{
networking.hostName = "babbel";

nix.settings = {
substituters = [
"https://devenv.cachix.org"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};

# Configure user account
users.users.jibiapina.home = "/Users/jibiapina";

Expand Down
11 changes: 11 additions & 0 deletions nix/hosts/mini/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@
networking.hostId = "1855342b";
networking.hostName = "mini";

nix.settings = {
substituters = [
"https://devenv.cachix.org"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};

# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
Expand Down

0 comments on commit ca2f859

Please sign in to comment.