wip: Add host deertopia

This commit is contained in:
Madeleine Sydney
2025-01-18 14:33:34 -07:00
parent 34adb5c26e
commit 46d6c129c1
74 changed files with 250 additions and 26 deletions

0
users/crumb/files.nix Normal file → Executable file
View File

0
users/crumb/programs/age.nix Normal file → Executable file
View File

0
users/crumb/programs/bash.nix Normal file → Executable file
View File

0
users/crumb/programs/emacs.nix Normal file → Executable file
View File

0
users/crumb/programs/emacs/early-init.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/init-straight.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/init.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/lib/syd-buffers.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/lib/syd-constants.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/lib/syd-file.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/lib/syd-prelude.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/lib/syd-window.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-age.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-autosave.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-completion.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-custom.el Normal file → Executable file
View File

View File

0
users/crumb/programs/emacs/modules/syd-evil.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-general.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-keybinds.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-org.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-projects.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-scratch.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-smartparens.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-ui.el Normal file → Executable file
View File

0
users/crumb/programs/emacs/modules/syd-use-package.el Normal file → Executable file
View File

0
users/crumb/programs/git.nix Normal file → Executable file
View File

0
users/crumb/programs/mpd.nix Normal file → Executable file
View File

21
users/escort/default.nix Executable file
View File

@@ -0,0 +1,21 @@
{
systemConfiguration = { config, ... }: {
isNormalUser = true;
# TODO: Don't hard-code `persist`. Use
# config.sydnix.impermanence.persistGroupName.
extraGroups = [ ];
initialHashedPassword =
"$y$j9T$uU64mjI.5Y1JICkKAaIgl0$kkO089hyDp3akSj7ReIKqFthA4T/d1w/nF40a5Tujt1";
};
homeConfiguration = { config, lib, pkgs, ... }: {
imports = [
];
sydnix = {
};
# Don't touch!
home.stateVersion = "18.09";
};
}

6
users/arisu/default.nix → users/lain/default.nix Normal file → Executable file
View File

@@ -3,9 +3,13 @@
isNormalUser = true;
# TODO: Don't hard-code `persist`. Use
# config.sydnix.impermanence.persistGroupName.
extraGroups = [ "wheel" "persist" ];
extraGroups = [ "wheel" "persist" "nginx" ];
initialHashedPassword =
"$y$j9T$aEFDDwdTZbAc6VQRXrkBJ0$K8wxTGTWDihyX1wxJ.ZMH//wmQFfrGGUkLkxIU0Lyq8";
openssh.authorizedKeys.keyFiles = [
../../public-keys/crumb-at-guix-rebound.pub
];
};
homeConfiguration = { config, lib, pkgs, ... }: {