fix(deertopia): i don't know what the deal with this one is
This commit is contained in:
@@ -9,6 +9,8 @@
|
||||
sydnix = {
|
||||
filesystemType = "btrfs";
|
||||
|
||||
stylix.enable = true;
|
||||
|
||||
users.users = [
|
||||
"lain"
|
||||
"msyds"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ config, lib, pkgs, inputs, ... }@args:
|
||||
{ config, lib, pkgs, inputs, options, ... }@args:
|
||||
|
||||
let cfg = config.sydnix.users.crumb.emacs;
|
||||
in {
|
||||
@@ -145,7 +145,9 @@ in {
|
||||
};
|
||||
|
||||
# We do this ourselves.
|
||||
stylix.targets.emacs.enable = false;
|
||||
stylix.targets.emacs.enable =
|
||||
lib.mkIf (lib.hasAttrByPath ["stylix" "targets" "emacs"] options)
|
||||
false;
|
||||
|
||||
home.shellAliases = {
|
||||
e = "emacsclient-or-emacs";
|
||||
|
||||
@@ -22,6 +22,10 @@
|
||||
initialHashedPassword =
|
||||
"$y$j9T$aEFDDwdTZbAc6VQRXrkBJ0$K8wxTGTWDihyX1wxJ.ZMH//wmQFfrGGUkLkxIU0Lyq8";
|
||||
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAKAKil00TXWc2SzKnqblFeX0ald5EkT81ZSRv87UMpf crumb@fruitbook"
|
||||
];
|
||||
|
||||
openssh.authorizedKeys.keyFiles = [
|
||||
../../public-keys/ssh/crumb-at-guix-rebound.pub
|
||||
../../public-keys/ssh/crumble-at-fruitbook.pub
|
||||
|
||||
Reference in New Issue
Block a user