nixfiles/nixos/modules/common.nix

148 lines
3.9 KiB
Nix
Raw Normal View History

{ lib, pkgs, pkgs', inputs, config, ... }:
2022-02-13 13:10:21 +00:00
let
inherit (lib) flatten optional mkIf mkDefault mkMerge;
inherit (lib.my) mkBoolOpt' dummyOption;
2022-02-13 13:10:21 +00:00
in
{
options = with lib.types; {
my = {
2022-02-17 19:14:10 +00:00
ssh = {
2022-02-19 22:55:53 +00:00
strictModes = mkBoolOpt' true
2022-02-17 19:14:10 +00:00
("Specifies whether sshd(8) should check file modes and ownership of the user's files and home directory "+
"before accepting login.");
};
};
# Only present in >=22.05, so forward declare
documentation.nixos.options.warningsAreErrors = dummyOption;
2022-02-13 13:10:21 +00:00
};
2022-02-06 00:06:26 +00:00
imports = [
inputs.impermanence.nixosModule
inputs.agenix.nixosModules.age
];
2022-02-16 01:38:17 +00:00
config = mkMerge [
2022-02-19 22:55:53 +00:00
{
2022-02-13 23:06:31 +00:00
home-manager = {
# Installs packages in the system config instead of in the local profile on activation
2022-02-13 23:06:31 +00:00
useUserPackages = mkDefault true;
};
2022-02-06 00:06:26 +00:00
2022-02-13 13:10:21 +00:00
users = {
mutableUsers = false;
};
2022-02-06 00:06:26 +00:00
2022-02-13 13:10:21 +00:00
security = {
sudo.enable = mkDefault false;
doas = {
enable = mkDefault true;
wheelNeedsPassword = mkDefault false;
2022-02-06 00:06:26 +00:00
};
2022-02-13 13:10:21 +00:00
};
2022-02-06 00:06:26 +00:00
2022-02-13 13:10:21 +00:00
nix = {
package = pkgs'.unstable.nixVersions.stable;
2022-02-19 22:55:53 +00:00
# TODO: This has been renamed to nix.settings.trusted-users in 22.05
trustedUsers = [ "@wheel" ];
2022-02-13 13:10:21 +00:00
extraOptions =
''
experimental-features = nix-command flakes ca-derivations
'';
};
nixpkgs = {
2022-02-13 17:44:14 +00:00
overlays = [
2022-02-19 22:55:53 +00:00
inputs.deploy-rs.overlay
2022-02-17 15:47:24 +00:00
# TODO: Wait for https://github.com/NixOS/nixpkgs/pull/159074 to arrive to nixos-unstable
(final: prev: { remarshal = pkgs'.master.remarshal; })
2022-02-13 17:44:14 +00:00
];
2022-02-13 13:10:21 +00:00
config = {
allowUnfree = true;
};
2022-02-13 13:10:21 +00:00
};
documentation = {
nixos = {
enable = mkDefault true;
options.warningsAreErrors = mkDefault false;
};
};
2022-02-13 23:06:31 +00:00
time.timeZone = mkDefault "Europe/Dublin";
2022-02-13 13:10:21 +00:00
boot = {
# Use latest LTS release by default
kernelPackages = mkDefault pkgs.linuxKernel.packages.linux_5_15;
loader = {
efi = {
efiSysMountPoint = mkDefault "/boot";
canTouchEfiVariables = mkDefault false;
};
2022-02-17 15:47:24 +00:00
grub = {
memtest86.enable = mkDefault true;
};
2022-02-13 13:10:21 +00:00
systemd-boot = {
enable = mkDefault true;
editor = mkDefault true;
consoleMode = mkDefault "max";
configurationLimit = mkDefault 10;
memtest86.enable = mkDefault true;
};
};
2022-02-13 13:10:21 +00:00
};
2022-02-06 00:19:29 +00:00
2022-02-13 13:10:21 +00:00
networking = {
2022-02-19 22:55:53 +00:00
domain = mkDefault "int.nul.ie";
2022-02-13 13:10:21 +00:00
useDHCP = mkDefault false;
enableIPv6 = mkDefault true;
};
2022-02-17 19:14:10 +00:00
virtualisation = {
forwardPorts = flatten [
(optional config.services.openssh.openFirewall { from = "host"; host.port = 2222; guest.port = 22; })
];
};
2022-02-13 13:10:21 +00:00
environment.systemPackages = with pkgs; [
bash-completion
vim
];
2022-02-06 00:06:26 +00:00
2022-02-16 01:38:17 +00:00
services = {
kmscon = {
enable = mkDefault true;
hwRender = mkDefault true;
extraOptions = "--verbose";
extraConfig =
''
font-name=SauceCodePro Nerd Font Mono
'';
};
openssh = {
enable = mkDefault true;
2022-02-17 19:14:10 +00:00
extraConfig = ''StrictModes ${if config.my.ssh.strictModes then "yes" else "no"}'';
2022-02-19 22:55:53 +00:00
permitRootLogin = mkDefault "no";
passwordAuthentication = mkDefault false;
2022-02-16 01:38:17 +00:00
};
2022-02-13 13:10:21 +00:00
};
2022-02-13 13:10:21 +00:00
system = {
stateVersion = "21.11";
configurationRevision = with inputs; mkIf (self ? rev) self.rev;
2022-02-06 00:06:26 +00:00
};
2022-02-16 01:38:17 +00:00
}
(mkIf config.services.kmscon.enable {
fonts.fonts = with pkgs; [
(nerdfonts.override {
fonts = [ "SourceCodePro" ];
})
];
})
2022-02-17 19:14:10 +00:00
(mkIf config.my.build.isDevVM {
networking.interfaces.eth0.useDHCP = mkDefault true;
})
2022-02-16 01:38:17 +00:00
];
meta.buildDocsInSandbox = false;
2022-02-13 13:10:21 +00:00
}