factor out do_append in prep for delta subcommands

This commit is contained in:
Qyriad 2026-02-02 13:42:07 +01:00
parent 8477c73067
commit 9ae0630db4
8 changed files with 237 additions and 56 deletions

36
configuration.nix Normal file
View file

@ -0,0 +1,36 @@
{ pkgs, modulesPath, ... }:
{
imports = [
./dynamic.nix
./dynamic-options.nix
"${modulesPath}/profiles/qemu-guest.nix"
];
dynamicism.for.gotosocial.enable = true;
# Just an example system.
users.mutableUsers = false;
users.users.root = {
password = "root";
};
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "yes";
};
};
environment.shellAliases = {
ls = "eza --long --header --group --group-directories-first --classify --binary";
};
environment.systemPackages = with pkgs; [
eza
fd
ripgrep
];
system.stateVersion = "25.11";
}