2023-06-06 15:01:28 +00:00
|
|
|
# This is your system's configuration file.
|
|
|
|
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
|
|
|
|
# https://github.com/Misterio77/nix-starter-configs
|
|
|
|
|
|
|
|
{ inputs, lib, config, pkgs, ... }: {
|
|
|
|
# You can import other NixOS modules here
|
|
|
|
imports = [
|
|
|
|
# If you want to use modules from other flakes (such as nixos-hardware):
|
2023-06-06 16:48:05 +00:00
|
|
|
# inputs.hardware.nixosModules.common-cpu-amd
|
2023-06-06 15:30:46 +00:00
|
|
|
# inputs.hardware.nixosModules.common-gpu-nvidia
|
2023-06-06 15:01:28 +00:00
|
|
|
|
|
|
|
# You can also split up your configuration and import pieces of it here:
|
|
|
|
# ./users.nix
|
|
|
|
./network.nix
|
2023-06-06 17:25:40 +00:00
|
|
|
# ./i3.nix
|
2023-06-06 15:01:28 +00:00
|
|
|
|
|
|
|
# Import home-manager's NixOS module
|
|
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
|
|
|
|
# Import your generated (nixos-generate-config) hardware configuration
|
|
|
|
./hardware-configuration.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
# You can add overlays here
|
|
|
|
overlays = [
|
|
|
|
# If you want to use overlays exported from other flakes:
|
|
|
|
# neovim-nightly-overlay.overlays.default
|
|
|
|
|
|
|
|
# Or define it inline, for example:
|
|
|
|
# (final: prev: {
|
|
|
|
# hi = final.hello.overrideAttrs (oldAttrs: {
|
|
|
|
# patches = [ ./change-hello-to-hi.patch ];
|
|
|
|
# });
|
|
|
|
# })
|
|
|
|
];
|
|
|
|
# Configure your nixpkgs instance
|
|
|
|
config = {
|
|
|
|
# Disable if you don't want unfree packages
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nix = {
|
|
|
|
# This will add each flake input as a registry
|
|
|
|
# To make nix3 commands consistent with your flake
|
|
|
|
registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
|
|
|
|
|
|
|
|
# This will additionally add your inputs to the system's legacy channels
|
|
|
|
# Making legacy nix commands consistent as well, awesome!
|
|
|
|
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
# Enable flakes and new 'nix' command
|
|
|
|
experimental-features = "nix-command flakes";
|
|
|
|
# Deduplicate and optimize nix store
|
|
|
|
auto-optimise-store = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# TODO_: This is just an example, be sure to use whatever bootloader you prefer
|
2023-06-06 15:23:18 +00:00
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
2023-06-06 15:01:28 +00:00
|
|
|
|
|
|
|
# Setup keyfile
|
|
|
|
boot.initrd.secrets = {
|
|
|
|
"/crypto_keyfile.bin" = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
# FIXME_: Add the rest of your current configuration
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
i18n.extraLocaleSettings = {
|
|
|
|
LC_ADDRESS = "nl_NL.UTF-8";
|
|
|
|
LC_IDENTIFICATION = "nl_NL.UTF-8";
|
|
|
|
LC_MEASUREMENT = "nl_NL.UTF-8";
|
|
|
|
LC_MONETARY = "nl_NL.UTF-8";
|
|
|
|
LC_NAME = "nl_NL.UTF-8";
|
|
|
|
LC_NUMERIC = "nl_NL.UTF-8";
|
|
|
|
LC_PAPER = "nl_NL.UTF-8";
|
|
|
|
LC_TELEPHONE = "nl_NL.UTF-8";
|
|
|
|
LC_TIME = "nl_NL.UTF-8";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
services.printing.enable = true;
|
|
|
|
|
|
|
|
# Enable sound with pipewire.
|
|
|
|
sound.enable = true;
|
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
# If you want to use JACK applications, uncomment this
|
|
|
|
#jack.enable = true;
|
|
|
|
|
|
|
|
# use the example session manager (no others are packaged yet so this is enabled by default,
|
|
|
|
# no need to redefine it in your config for now)
|
|
|
|
#media-session.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
|
|
# services.xserver.libinput.enable = true;
|
|
|
|
|
|
|
|
# TODO_: Configure your system-wide user settings (groups, etc), add more users as needed.
|
|
|
|
users.users = {
|
|
|
|
# FIXME_: Replace with your username
|
|
|
|
mans = {
|
|
|
|
# TODO_: You can set an initial password for your user.
|
|
|
|
# If you do, you can skip setting a root password by passing '--no-root-passwd' to nixos-install.
|
|
|
|
# Be sure to change it (using passwd) after rebooting!
|
|
|
|
isNormalUser = true;
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
|
|
|
|
];
|
|
|
|
# TODO_: Be sure to add any other groups you need (such as networkmanager, audio, docker, etc)
|
|
|
|
extraGroups = [ "wheel" "networkmanager" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# This setups a SSH server. Very important if you're setting up a headless system.
|
|
|
|
# Feel free to remove if you don't need it.
|
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
2023-06-06 15:30:46 +00:00
|
|
|
settings = {
|
|
|
|
# Forbid root login through SSH.
|
2023-06-06 16:41:09 +00:00
|
|
|
PermitRootLogin = "yes";
|
2023-06-06 15:30:46 +00:00
|
|
|
# Use keys only. Remove if you want to SSH using password (not recommended)
|
2023-06-06 16:41:09 +00:00
|
|
|
PasswordAuthentication = false;
|
2023-06-06 15:30:46 +00:00
|
|
|
};
|
2023-06-06 15:01:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
extraSpecialArgs = { inherit inputs; };
|
|
|
|
users = {
|
|
|
|
# Import your home-manager configuration
|
2023-06-06 15:30:46 +00:00
|
|
|
mans = import ../home-manager/home.nix;
|
2023-06-06 15:01:28 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
}
|