70 lines
1.8 KiB
Nix
70 lines
1.8 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
./users.nix
|
||
./services.nix
|
||
];
|
||
|
||
# Use the systemd-boot EFI boot loader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
boot.supportedFilesystems = [ "zfs" ];
|
||
|
||
networking.hostName = "loutreos"; # Define your hostname.
|
||
networking.hostId = "7e66e347";
|
||
|
||
# Select internationalisation properties.
|
||
# i18n = {
|
||
# consoleFont = "Lat2-Terminus16";
|
||
# consoleKeyMap = "en";
|
||
# defaultLocale = "en_US.UTF-8";
|
||
# };
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/Paris";
|
||
|
||
# List packages installed in system profile. To search by name, run:
|
||
# $ nix-env -qaP | grep wget
|
||
environment.systemPackages = with pkgs; [
|
||
neovim
|
||
git
|
||
tmux
|
||
];
|
||
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
programs.zsh.enable = true;
|
||
|
||
virtualisation.rkt.enable = true;
|
||
boot.kernelModules = [ "overlay" ];
|
||
users.extraGroups.rkt = { };
|
||
|
||
# Some programs need SUID wrappers, can be configured further or are
|
||
# started in user sessions.
|
||
# programs.bash.enableCompletion = true;
|
||
# programs.mtr.enable = true;
|
||
# programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
||
|
||
# List services that you want to enable:
|
||
|
||
# Enable the OpenSSH daemon.
|
||
services.openssh.enable = true;
|
||
services.openssh.permitRootLogin = "no";
|
||
|
||
networking.firewall.allowedTCPPorts = [ ];
|
||
networking.firewall.allowedUDPPorts = [ ];
|
||
networking.firewall.enable = true;
|
||
|
||
security.sudo.wheelNeedsPassword = false;
|
||
|
||
system.autoUpgrade.enable = true;
|
||
}
|