83 lines
2.0 KiB
Nix
83 lines
2.0 KiB
Nix
|
{ pkgs, lib, config, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
|
||
|
];
|
||
|
|
||
|
disabledModules = [
|
||
|
"profiles/base.nix"
|
||
|
];
|
||
|
|
||
|
networking.hostName = "netalis-nixos-iso";
|
||
|
isoImage.isoBaseName = "netalis-nixos-iso";
|
||
|
|
||
|
boot.supportedFilesystems =
|
||
|
[ "btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs" ] ++
|
||
|
lib.optional (lib.meta.availableOn pkgs.stdenv.hostPlatform config.boot.zfs.package) "zfs";
|
||
|
|
||
|
# Configure host id for ZFS to work
|
||
|
networking.hostId = lib.mkDefault "8425e349";
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
pkgs.w3m-nographics # needed for the manual anyway
|
||
|
pkgs.testdisk # useful for repairing boot problems
|
||
|
pkgs.ms-sys # for writing Microsoft boot sectors / MBRs
|
||
|
pkgs.efibootmgr
|
||
|
pkgs.efivar
|
||
|
pkgs.parted
|
||
|
pkgs.gptfdisk
|
||
|
pkgs.ddrescue
|
||
|
pkgs.ccrypt
|
||
|
pkgs.cryptsetup # needed for dm-crypt volumes
|
||
|
|
||
|
# Some text editors.
|
||
|
(pkgs.vim.customize {
|
||
|
name = "vim";
|
||
|
vimrcConfig.customRC = ''
|
||
|
filetype plugin indent on
|
||
|
set tabstop=4
|
||
|
set shiftwidth=4
|
||
|
set expandtab
|
||
|
set modeline
|
||
|
set modelines=1
|
||
|
set encoding=utf-8
|
||
|
syntax on
|
||
|
au BufRead,BufNewFile *.nix set ts=2 sw=2
|
||
|
'';
|
||
|
})
|
||
|
|
||
|
# Some networking tools.
|
||
|
pkgs.fuse
|
||
|
pkgs.fuse3
|
||
|
pkgs.sshfs-fuse
|
||
|
pkgs.socat
|
||
|
pkgs.screen
|
||
|
pkgs.tcpdump
|
||
|
|
||
|
# Hardware-related tools.
|
||
|
pkgs.sdparm
|
||
|
pkgs.hdparm
|
||
|
pkgs.smartmontools # for diagnosing hard disks
|
||
|
pkgs.pciutils
|
||
|
pkgs.usbutils
|
||
|
pkgs.nvme-cli
|
||
|
|
||
|
# Some compression/archiver tools.
|
||
|
pkgs.unzip
|
||
|
pkgs.zip
|
||
|
];
|
||
|
|
||
|
time.timeZone = "Europe/Berlin";
|
||
|
|
||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||
|
console = {
|
||
|
font = "Lat2-Terminus16";
|
||
|
keyMap = "de-latin1";
|
||
|
};
|
||
|
|
||
|
users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOV4f3/OcNQIHqomvH0nGLDmXDlrO/u7JKE9Fgq2Vuqs me@netali.de" ];
|
||
|
|
||
|
networking.dhcpcd.enable = false;
|
||
|
networking.useDHCP = false;
|
||
|
}
|