fruitbasket/hosts/quitte/configuration.nix

61 lines
1.9 KiB
Nix
Raw Normal View History

2023-09-17 20:14:32 +02:00
{ pkgs, ... }:
2022-08-16 14:20:36 +02:00
{
imports =
2022-09-06 17:16:31 +02:00
[
2022-08-16 14:20:36 +02:00
./hardware-configuration.nix
2022-12-09 16:18:57 +01:00
./network.nix
2022-08-16 14:20:36 +02:00
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
#boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
#boot.kernelParams = [ "video=VGA-1:1024x768@30" ];
2022-08-16 14:20:36 +02:00
boot.loader.efi.canTouchEfiVariables = true;
#boot.supportedFilesystems = [ "zfs" ];
#boot.zfs.devNodes = "/dev/";
2022-09-06 17:16:31 +02:00
2023-07-13 12:59:24 +02:00
services.qemuGuest.enable = true;
2022-08-16 14:20:36 +02:00
# don't freeze the whole system while building something
nix.settings.cores = 16;
# allows everyone in the nix-trusted group to perform builds
nix.settings.trusted-users = [ "@nix-trusted" ];
2022-08-16 14:20:36 +02:00
# Set your time zone.
time.timeZone = "Europe/Berlin";
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2022-11-11 16:39:48 +01:00
vim
2022-08-16 14:20:36 +02:00
wget
git
];
# Enable the OpenSSH daemon.
services.openssh.enable = true;
2023-07-11 18:21:48 +02:00
services.openssh.settings.PermitRootLogin = "yes";
2022-09-06 17:16:31 +02:00
2022-08-16 14:20:36 +02:00
# Open ports in the firewall.
2022-09-06 14:00:29 +02:00
networking.firewall.allowedTCPPorts = [ 443 80 ];
2022-08-16 14:20:36 +02:00
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
2023-07-26 16:41:55 +02:00
system.stateVersion = "23.05"; # Did you read the comment?
2022-08-16 14:20:36 +02:00
}