-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,15 @@ in { | |
services.xserver.desktopManager.gnome.enable = true; | ||
programs.dconf.enable = true; # Needed for home-manager to not fail deployment (https://github.com/nix-community/home-manager/issues/3113) | ||
|
||
# To input decrypting password in initrd | ||
boot.initrd.unl0kr.enable = true; | ||
# unl0kr is not designed to work with plymouth | ||
boot.plymouth.enable = mkForce false; | ||
boot.initrd.unl0kr.settings = { | ||
keyboard.autohide = false; | ||
theme.default = "breezy-dark"; | ||
}; | ||
|
||
users.users.root.openssh.authorizedKeys.keys = mkIf config.services.openssh.enable [ | ||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOzh6FRxWUemwVeIDsr681fgJ2Q2qCnwJbvFe4xD15ve [email protected]" # Allow root access for the Super Administrator (KREYREN) | ||
]; | ||
|