2024-05-19 17:10:01 +02:00
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
host,
|
|
|
|
|
username,
|
|
|
|
|
options,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hardware.nix
|
|
|
|
|
./users.nix
|
|
|
|
|
../../modules/amd-drivers.nix
|
|
|
|
|
../../modules/nvidia-drivers.nix
|
|
|
|
|
../../modules/nvidia-prime-drivers.nix
|
|
|
|
|
../../modules/intel-drivers.nix
|
|
|
|
|
../../modules/vm-guest-services.nix
|
|
|
|
|
../../modules/local-hardware-clock.nix
|
|
|
|
|
];
|
|
|
|
|
|
2024-06-01 05:42:02 +02:00
|
|
|
|
boot = {
|
|
|
|
|
# Kernel
|
|
|
|
|
kernelPackages = pkgs.linuxPackages_zen;
|
|
|
|
|
# This is for OBS Virtual Cam Support
|
|
|
|
|
kernelModules = [ "v4l2loopback" ];
|
|
|
|
|
extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ];
|
|
|
|
|
# Needed For Some Steam Games
|
|
|
|
|
kernel.sysctl = {
|
|
|
|
|
"vm.max_map_count" = 2147483642;
|
|
|
|
|
};
|
|
|
|
|
# Bootloader.
|
|
|
|
|
loader.systemd-boot.enable = true;
|
|
|
|
|
loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
# Make /tmp a tmpfs
|
|
|
|
|
tmp = {
|
|
|
|
|
useTmpfs = false;
|
|
|
|
|
tmpfsSize = "30%";
|
|
|
|
|
};
|
|
|
|
|
# Appimage Support
|
|
|
|
|
binfmt.registrations.appimage = {
|
|
|
|
|
wrapInterpreterInShell = false;
|
|
|
|
|
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
|
|
|
|
|
recognitionType = "magic";
|
|
|
|
|
offset = 0;
|
|
|
|
|
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
|
|
|
|
|
magicOrExtension = ''\x7fELF....AI\x02'';
|
|
|
|
|
};
|
|
|
|
|
plymouth.enable = true;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2024-06-01 05:42:02 +02:00
|
|
|
|
# Styling Options
|
|
|
|
|
stylix = {
|
2024-06-17 08:05:41 +02:00
|
|
|
|
enable = true;
|
2024-06-17 23:40:06 +02:00
|
|
|
|
image = ../../config/wallpapers/beautifulmountainscape.jpg;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
# base16Scheme = {
|
|
|
|
|
# base00 = "232136";
|
|
|
|
|
# base01 = "2a273f";
|
|
|
|
|
# base02 = "393552";
|
|
|
|
|
# base03 = "6e6a86";
|
|
|
|
|
# base04 = "908caa";
|
|
|
|
|
# base05 = "e0def4";
|
|
|
|
|
# base06 = "e0def4";
|
|
|
|
|
# base07 = "56526e";
|
|
|
|
|
# base08 = "eb6f92";
|
|
|
|
|
# base09 = "f6c177";
|
|
|
|
|
# base0A = "ea9a97";
|
|
|
|
|
# base0B = "3e8fb0";
|
|
|
|
|
# base0C = "9ccfd8";
|
|
|
|
|
# base0D = "c4a7e7";
|
|
|
|
|
# base0E = "f6c177";
|
|
|
|
|
# base0F = "56526e";
|
|
|
|
|
# };
|
|
|
|
|
polarity = "dark";
|
2024-06-18 04:47:24 +02:00
|
|
|
|
opacity.terminal = 0.8;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
cursor.package = pkgs.bibata-cursors;
|
|
|
|
|
cursor.name = "Bibata-Modern-Ice";
|
|
|
|
|
cursor.size = 24;
|
|
|
|
|
fonts = {
|
|
|
|
|
monospace = {
|
|
|
|
|
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
|
|
|
|
|
name = "JetBrainsMono Nerd Font Mono";
|
|
|
|
|
};
|
|
|
|
|
sansSerif = {
|
|
|
|
|
package = pkgs.montserrat;
|
|
|
|
|
name = "Montserrat";
|
|
|
|
|
};
|
|
|
|
|
serif = {
|
|
|
|
|
package = pkgs.montserrat;
|
|
|
|
|
name = "Montserrat";
|
|
|
|
|
};
|
|
|
|
|
sizes = {
|
|
|
|
|
applications = 12;
|
|
|
|
|
terminal = 15;
|
|
|
|
|
desktop = 11;
|
|
|
|
|
popups = 12;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-05-19 17:10:01 +02:00
|
|
|
|
|
2024-06-01 05:42:02 +02:00
|
|
|
|
# Extra Module Options
|
|
|
|
|
drivers.amdgpu.enable = true;
|
|
|
|
|
drivers.nvidia.enable = false;
|
|
|
|
|
drivers.nvidia-prime = {
|
|
|
|
|
enable = false;
|
|
|
|
|
intelBusID = "";
|
|
|
|
|
nvidiaBusID = "";
|
|
|
|
|
};
|
|
|
|
|
drivers.intel.enable = false;
|
|
|
|
|
vm.guest-services.enable = false;
|
|
|
|
|
local.hardware-clock.enable = false;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
|
|
|
|
|
# Enable networking
|
|
|
|
|
networking.networkmanager.enable = true;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
networking.hostName = host;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
networking.timeServers = options.networking.timeServers.default ++ [ "pool.ntp.org" ];
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "America/Chicago";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
|
|
i18n.extraLocaleSettings = {
|
|
|
|
|
LC_ADDRESS = "en_US.UTF-8";
|
|
|
|
|
LC_IDENTIFICATION = "en_US.UTF-8";
|
|
|
|
|
LC_MEASUREMENT = "en_US.UTF-8";
|
|
|
|
|
LC_MONETARY = "en_US.UTF-8";
|
|
|
|
|
LC_NAME = "en_US.UTF-8";
|
|
|
|
|
LC_NUMERIC = "en_US.UTF-8";
|
|
|
|
|
LC_PAPER = "en_US.UTF-8";
|
|
|
|
|
LC_TELEPHONE = "en_US.UTF-8";
|
|
|
|
|
LC_TIME = "en_US.UTF-8";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
programs = {
|
2024-06-18 00:49:31 +02:00
|
|
|
|
firefox.enable = false;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
starship = {
|
2024-05-19 17:10:01 +02:00
|
|
|
|
enable = true;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
settings = {
|
|
|
|
|
add_newline = false;
|
|
|
|
|
buf = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
c = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
directory = {
|
|
|
|
|
read_only = " ";
|
|
|
|
|
};
|
|
|
|
|
docker_context = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
fossil_branch = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
git_branch = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
golang = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
hg_branch = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
hostname = {
|
|
|
|
|
ssh_symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
lua = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
memory_usage = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
meson = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
nim = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
nix_shell = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
nodejs = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
ocaml = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
package = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
python = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
rust = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
swift = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
zig = {
|
|
|
|
|
symbol = " ";
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-05-19 17:10:01 +02:00
|
|
|
|
};
|
|
|
|
|
dconf.enable = true;
|
|
|
|
|
seahorse.enable = true;
|
|
|
|
|
fuse.userAllowOther = true;
|
|
|
|
|
mtr.enable = true;
|
|
|
|
|
gnupg.agent = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableSSHSupport = true;
|
|
|
|
|
};
|
|
|
|
|
virt-manager.enable = true;
|
|
|
|
|
steam = {
|
|
|
|
|
enable = true;
|
|
|
|
|
gamescopeSession.enable = true;
|
|
|
|
|
remotePlay.openFirewall = true;
|
|
|
|
|
dedicatedServer.openFirewall = true;
|
|
|
|
|
};
|
|
|
|
|
thunar = {
|
|
|
|
|
enable = true;
|
2024-05-24 07:14:25 +02:00
|
|
|
|
plugins = with pkgs.xfce; [
|
|
|
|
|
thunar-archive-plugin
|
|
|
|
|
thunar-volman
|
|
|
|
|
];
|
2024-05-19 17:10:01 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
|
|
users = {
|
|
|
|
|
mutableUsers = true;
|
|
|
|
|
};
|
|
|
|
|
|
2024-06-01 05:42:02 +02:00
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
vim
|
|
|
|
|
wget
|
|
|
|
|
killall
|
2024-06-18 01:28:44 +02:00
|
|
|
|
eza
|
2024-06-01 05:42:02 +02:00
|
|
|
|
git
|
|
|
|
|
cmatrix
|
|
|
|
|
lolcat
|
|
|
|
|
htop
|
2024-06-18 00:49:31 +02:00
|
|
|
|
brave
|
2024-06-01 05:42:02 +02:00
|
|
|
|
libvirt
|
|
|
|
|
lxqt.lxqt-policykit
|
|
|
|
|
lm_sensors
|
|
|
|
|
unzip
|
|
|
|
|
unrar
|
|
|
|
|
libnotify
|
|
|
|
|
v4l-utils
|
|
|
|
|
ydotool
|
2024-06-18 01:42:53 +02:00
|
|
|
|
duf
|
|
|
|
|
ncdu
|
2024-06-01 05:42:02 +02:00
|
|
|
|
wl-clipboard
|
|
|
|
|
pciutils
|
|
|
|
|
ffmpeg
|
|
|
|
|
socat
|
|
|
|
|
cowsay
|
|
|
|
|
ripgrep
|
|
|
|
|
lshw
|
2024-06-18 04:47:24 +02:00
|
|
|
|
bat
|
2024-06-01 05:42:02 +02:00
|
|
|
|
pkg-config
|
|
|
|
|
meson
|
|
|
|
|
hyprpicker
|
|
|
|
|
ninja
|
|
|
|
|
brightnessctl
|
|
|
|
|
virt-viewer
|
|
|
|
|
swappy
|
|
|
|
|
appimage-run
|
|
|
|
|
networkmanagerapplet
|
|
|
|
|
yad
|
2024-06-18 04:47:24 +02:00
|
|
|
|
inxi
|
2024-06-01 05:42:02 +02:00
|
|
|
|
playerctl
|
|
|
|
|
nh
|
|
|
|
|
nixfmt-rfc-style
|
|
|
|
|
discord
|
|
|
|
|
libvirt
|
|
|
|
|
swww
|
|
|
|
|
grim
|
|
|
|
|
slurp
|
|
|
|
|
gnome.file-roller
|
|
|
|
|
swaynotificationcenter
|
|
|
|
|
imv
|
|
|
|
|
mpv
|
|
|
|
|
gimp
|
|
|
|
|
pavucontrol
|
|
|
|
|
tree
|
|
|
|
|
spotify
|
|
|
|
|
neovide
|
|
|
|
|
greetd.tuigreet
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
|
packages = with pkgs; [
|
|
|
|
|
noto-fonts-emoji
|
|
|
|
|
noto-fonts-cjk
|
|
|
|
|
font-awesome
|
2024-05-19 17:10:01 +02:00
|
|
|
|
symbola
|
|
|
|
|
material-icons
|
|
|
|
|
];
|
2024-06-01 05:42:02 +02:00
|
|
|
|
};
|
2024-05-19 17:10:01 +02:00
|
|
|
|
|
|
|
|
|
environment.variables = {
|
2024-06-01 05:42:02 +02:00
|
|
|
|
ZANEYOS_VERSION = "2.2";
|
2024-05-19 17:42:31 +02:00
|
|
|
|
ZANEYOS = "true";
|
2024-05-19 17:10:01 +02:00
|
|
|
|
};
|
|
|
|
|
|
2024-06-01 05:42:02 +02:00
|
|
|
|
# Extra Portal Configuration
|
|
|
|
|
xdg.portal = {
|
|
|
|
|
enable = true;
|
|
|
|
|
wlr.enable = true;
|
|
|
|
|
extraPortals = [
|
|
|
|
|
pkgs.xdg-desktop-portal-gtk
|
|
|
|
|
pkgs.xdg-desktop-portal
|
|
|
|
|
];
|
|
|
|
|
configPackages = [
|
|
|
|
|
pkgs.xdg-desktop-portal-gtk
|
|
|
|
|
pkgs.xdg-desktop-portal-hyprland
|
|
|
|
|
pkgs.xdg-desktop-portal
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2024-05-19 17:10:01 +02:00
|
|
|
|
# Services to start
|
|
|
|
|
services = {
|
|
|
|
|
xserver = {
|
2024-06-01 05:42:02 +02:00
|
|
|
|
enable = false;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
xkb = {
|
|
|
|
|
layout = "us";
|
|
|
|
|
variant = "";
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-06-01 05:42:02 +02:00
|
|
|
|
greetd = {
|
2024-05-19 17:10:01 +02:00
|
|
|
|
enable = true;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
vt = 3;
|
|
|
|
|
settings = {
|
|
|
|
|
default_session = {
|
|
|
|
|
# Wayland Desktop Manager is installed only for user ryan via home-manager!
|
|
|
|
|
user = username;
|
|
|
|
|
# .wayland-session is a script generated by home-manager, which links to the current wayland compositor(sway/hyprland or others).
|
|
|
|
|
# with such a vendor-no-locking script, we can switch to another wayland compositor without modifying greetd's config here.
|
|
|
|
|
# command = "$HOME/.wayland-session"; # start a wayland session directly without a login manager
|
|
|
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland"; # start Hyprland with a TUI login manager
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
smartd = {
|
|
|
|
|
enable = false;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
autodetect = true;
|
|
|
|
|
};
|
|
|
|
|
libinput.enable = true;
|
2024-06-17 08:05:41 +02:00
|
|
|
|
fstrim.enable = true;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
gvfs.enable = true;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
openssh.enable = true;
|
|
|
|
|
flatpak.enable = false;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
printing = {
|
|
|
|
|
enable = true;
|
2024-06-17 08:05:41 +02:00
|
|
|
|
drivers = [
|
|
|
|
|
# pkgs.hplipWithPlugin
|
|
|
|
|
];
|
2024-06-01 05:42:02 +02:00
|
|
|
|
};
|
2024-05-19 17:10:01 +02:00
|
|
|
|
gnome.gnome-keyring.enable = true;
|
|
|
|
|
avahi = {
|
2024-06-17 08:11:42 +02:00
|
|
|
|
enable = true;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
nssmdns4 = true;
|
|
|
|
|
openFirewall = true;
|
|
|
|
|
};
|
|
|
|
|
ipp-usb.enable = true;
|
|
|
|
|
syncthing = {
|
|
|
|
|
enable = false;
|
|
|
|
|
user = "${username}";
|
|
|
|
|
dataDir = "/home/${username}";
|
|
|
|
|
configDir = "/home/${username}/.config/syncthing";
|
|
|
|
|
};
|
|
|
|
|
pipewire = {
|
|
|
|
|
enable = true;
|
|
|
|
|
alsa.enable = true;
|
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
|
pulse.enable = true;
|
|
|
|
|
};
|
2024-06-17 20:26:32 +02:00
|
|
|
|
rpcbind.enable = false;
|
|
|
|
|
nfs.server.enable = false;
|
2024-05-19 17:10:01 +02:00
|
|
|
|
};
|
|
|
|
|
systemd.services.flatpak-repo = {
|
|
|
|
|
path = [ pkgs.flatpak ];
|
|
|
|
|
script = ''
|
|
|
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
hardware.sane = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraBackends = [ pkgs.sane-airscan ];
|
|
|
|
|
disabledDefaultBackends = [ "escl" ];
|
|
|
|
|
};
|
2024-06-01 05:42:02 +02:00
|
|
|
|
|
|
|
|
|
# Extra Logitech Support
|
2024-05-19 17:10:01 +02:00
|
|
|
|
hardware.logitech.wireless.enable = true;
|
|
|
|
|
hardware.logitech.wireless.enableGraphical = true;
|
2024-06-01 05:42:02 +02:00
|
|
|
|
|
|
|
|
|
# Bluetooth Support
|
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
|
|
|
services.blueman.enable = true;
|
|
|
|
|
|
2024-05-19 17:10:01 +02:00
|
|
|
|
# Enable sound with pipewire.
|
|
|
|
|
sound.enable = true;
|
|
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
|
|
|
|
|
|
# Security / Polkit
|
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
|
security.polkit.enable = true;
|
|
|
|
|
security.polkit.extraConfig = ''
|
|
|
|
|
polkit.addRule(function(action, subject) {
|
|
|
|
|
if (
|
|
|
|
|
subject.isInGroup("users")
|
|
|
|
|
&& (
|
|
|
|
|
action.id == "org.freedesktop.login1.reboot" ||
|
|
|
|
|
action.id == "org.freedesktop.login1.reboot-multiple-sessions" ||
|
|
|
|
|
action.id == "org.freedesktop.login1.power-off" ||
|
|
|
|
|
action.id == "org.freedesktop.login1.power-off-multiple-sessions"
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
return polkit.Result.YES;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
'';
|
2024-06-01 05:42:02 +02:00
|
|
|
|
security.pam.services.swaylock = {
|
|
|
|
|
text = ''
|
|
|
|
|
auth include login
|
|
|
|
|
'';
|
|
|
|
|
};
|
2024-05-19 17:10:01 +02:00
|
|
|
|
|
|
|
|
|
# Optimization settings and garbage collection automation
|
|
|
|
|
nix = {
|
|
|
|
|
settings = {
|
|
|
|
|
auto-optimise-store = true;
|
|
|
|
|
experimental-features = [
|
|
|
|
|
"nix-command"
|
|
|
|
|
"flakes"
|
|
|
|
|
];
|
|
|
|
|
substituters = [ "https://hyprland.cachix.org" ];
|
|
|
|
|
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
|
|
|
|
|
};
|
|
|
|
|
gc = {
|
|
|
|
|
automatic = true;
|
|
|
|
|
dates = "weekly";
|
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Virtualization / Containers
|
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
|
virtualisation.podman = {
|
|
|
|
|
enable = true;
|
|
|
|
|
dockerCompat = true;
|
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# OpenGL
|
|
|
|
|
hardware.opengl = {
|
|
|
|
|
enable = true;
|
|
|
|
|
driSupport = true;
|
|
|
|
|
driSupport32Bit = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Open ports in the firewall.
|
|
|
|
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|
|
|
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
|
|
|
|
# Or disable the firewall altogether.
|
|
|
|
|
# networking.firewall.enable = false;
|
|
|
|
|
|
|
|
|
|
# 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. It‘s 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).
|
|
|
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
|
|
|
}
|