nixos-configs/common.nix
Paul-Henri Froidmont 68d301c666
Modularize everything
2023-03-21 14:42:39 +01:00

56 lines
1.2 KiB
Nix

{ inputs, config, lib, pkgs, ... }:
with lib;
with lib.my; {
imports = [ inputs.home-manager.nixosModules.home-manager ]
++ (mapModulesRec' (toString ./modules) import);
nix = {
package = pkgs.nixFlakes;
extraOptions = "experimental-features = nix-command flakes";
nixPath = [ "nixpkgs=${inputs.nixpkgs-unstable}" ];
settings = {
substituters = [
"https://nix-community.cachix.org"
"http://cache.banditlair.com"
"https://cache.nixos.org/"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"cache.banditlair.com:4zk7iDvzKh6VN+LxzKIGcVPKgL5dLeyEt2ydrgx4o8c="
];
auto-optimise-store = true;
};
};
system.configurationRevision = with inputs; mkIf (self ? rev) self.rev;
time.timeZone = lib.mkDefault "Europe/Amsterdam";
i18n.defaultLocale = lib.mkDefault "en_US.UTF-8";
console = { keyMap = lib.mkDefault "fr"; };
environment.systemPackages = with pkgs; [
git
vim
wget
inetutils
man
htop
ncdu
nload
pciutils
lsof
dnsutils
unzip
];
networking.hosts = {
"127.0.0.1" = [ "localhost" "membres.yourcoop.local" ];
};
services.resolved.dnssec = "false";
}