Skip to content

Commit

Permalink
fix(google-dragon): proper config
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 committed May 9, 2024
1 parent 9c7bf3d commit 5f7d0a5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion nixos/google-dragon/google-dragon.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
_: {
{
inputs,
lib,
}: {
imports = ["${toString inputs.nixpkgs}/nixos/modules/virtualisation/google-compute-image.nix"];

dr460nixed = {
grub = {
devices = ["/dev/sda"];
enable = true;
};
servers = {
enable = true;
monitoring = true;
Expand All @@ -12,6 +21,9 @@ _: {
# Hostname of this machine
networking.hostName = "google-dragon";

# Clashing gcp.nix / GNS
boot.loader.timeout = lib.mkForce 0;

# NixOS stuff
system.stateVersion = "23.11";
}

0 comments on commit 5f7d0a5

Please sign in to comment.