Files
sydnix/hosts/nixos-testbed/configuration.nix
Madeleine Sydney e4a0777c19 feat: dropbox
2024-12-29 03:22:15 -07:00

139 lines
3.8 KiB
Nix
Executable File

{ config, pkgs, lib, disko, ... }:
{
imports = [
./hardware-configuration.nix
./disko-config.nix
];
sydnix = {
filesystemType = "btrfs";
tailscale.enable = true;
dropbox.enable = true;
users.users = [
"crumb"
];
impermanence = {
enable = false;
directories = [
# "Warning: Neither /var/lib/nixos nor any of its parents are persisted.
# This means all users/groups without specified uids/gids will have them
# reassigned on reboot."
"/var/lib/nixos"
# We don't want to have different ssh keys on reboot, because ssh keys
# are expected to consistently identify machines... I think. I mostly
# just think it's annoying to edit ~/.ssh/known_hosts all the time.
"/etc/ssh"
];
device = "placeholderrrr";
archiveLimit = 3;
};
# niri.enable = true;
};
boot = {
initrd = {
enable = true;
systemd.enable = true;
# systemd.initrdBin = with pkgs; [
# zfs
# coreutils
# babashka
# ];
};
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = false;
};
};
# HACK: This is here temporarily so I can use `/persist` without
# Impermanence. This can be removed once impermanence is enabled.
# Create a group called `cfg.persistGroupName`
users.groups.persist = {
name = "persist";
};
# HACK: This is here temporarily so I can use `/persist` without
# Impermanence. This can be removed once impermanence is enabled.
systemd.tmpfiles.settings = {
"10-persist" = {
# Permit members of `cfg.persistGroupName` to read, write, and execute
# /persist.
"/persist" = {
z = {
group = "persist";
mode = "2775";
};
};
};
};
# networking.hostName = "nixos-testbed";
networking.hostId = "238e9b1e"; # head -c 8 /etc/machine-id
time.timeZone = "America/Denver";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
# keyMap = "us";
useXkbConfig = true; # use xkb.options in tty.
};
services.xserver.enable = true;
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
services.xserver.xkb.layout = "us";
services.xserver.xkb.options = "caps:escape";
environment.systemPackages = with pkgs; [
neovim
git
];
services.openssh.enable = true;
services.openssh.settings.PermitRootLogin = "yes";
# TODO: Move to defaults.
users.mutableUsers = false;
# services.xserver.windowManager.qtile = {
# enable = true;
# extraPackages = python3Packages: with python3Packages; [
# qtile-extras
# hy
# ];
# };
# This option defines the first version of NixOS you have installed on this
# particular machine, and is used to maintain compatibility with application
# data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any
# reason, even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are
# pulled from, so changing it will NOT upgrade your system - see
# https://nixos.org/manual/nixos/stable/#sec-upgrading for how to actually do
# that.
#
# This value being lower than the current NixOS release does NOT mean your
# system is out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes
# it would make to your configuration, and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or
# https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "24.05"; # Did you read the comment?
}