pub-solar-os/configurations/gaze12.nix

19 lines
218 B
Nix
Raw Normal View History

{ ... }:
let
inherit (builtins) readFile;
in
{
imports = [];
boot.loader.systemd-boot = {
enable = true;
editor = false;
};
users.users.root.hashedPassword =
readFile
../secrets/root;
}