Compare commits

...

3 Commits

Author SHA1 Message Date
Giulio De Pasquale
05eea814ef acme: Make module a function 2023-02-15 06:06:10 +01:00
Giulio De Pasquale
e8dd1ca4d4 roles.common: Cleanup, removed variables argument 2023-02-15 06:05:48 +01:00
Giulio De Pasquale
e542886345 network: changed name for manduria router to router-manduria 2023-02-15 06:02:34 +01:00
3 changed files with 8 additions and 5 deletions

View File

@ -103,7 +103,7 @@ in
${network.dvr-lan} dvr.devs.giugl.io
${network.nas-lan} nas.devs.giugl.io
${network.router-lan} manduria.devs.giugl.io
${network.router-lan} router-manduria.devs.giugl.io
192.168.1.1 vodafone.station
# Blacklist

View File

@ -1,3 +1,5 @@
{ ... }:
{
security.acme = {
acceptTerms = true;

View File

@ -1,4 +1,4 @@
{ config, pkgs, variables, lib, ... }:
{ config, pkgs, lib, ... }:
{
boot.tmpOnTmpfs = true;
@ -24,10 +24,11 @@
};
};
nixpkgs = { config = { allowUnfree = true; }; };
fonts.fontconfig.enable = true;
fonts.fonts = with pkgs; [ cascadia-code victor-mono ];
fonts = {
fontconfig.enable = true;
fonts = with pkgs; [ cascadia-code victor-mono ];
};
environment.systemPackages = with pkgs; [
file