hosts/gluttony: init #119
Reference in New Issue
Block a user
Delete Branch "gluttony"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
lgtm
I think you're possibly missing the changes to
values.nix?Also it probably needs to be registered in
nixosConfigurationsinflake.nixLooks good, I wrote a few comments but none of them are critically important.
Add the edits to
values.nixandflake.nix, and maybe test without DHCP, and I think we should be good to go.@@ -0,0 +12,4 @@(fp /base)];boot.loader.systemd-boot.enable = true;Does this work? On ildkule, I believe we had to use grub2 for some reason. Very cool if it works.
I am pretty sure this works I can try to reboot again to confirm.
I am able to reboot the machine without issue, marking this as resolved.
@@ -0,0 +23,4 @@{hostName = "gluttony";tempAddresses = "disabled";useDHCP = lib.mkForce true;This is probably copied from ildkule, but I don't see why we would have both the hostConf.ipv4, hostConf.ipv4_internal and DHCP, as DHCP will probably just advertise the same as ipv4_internal but with incorrect DNS settings.
changed useDHCP to false.
@@ -0,0 +39,4 @@];};swapDevices = [ ];Having a little swap is probably cool, but not absolutely required
Won't it be pretty difficult since there is no free space?
I can just use a swap file instead of a dedicated partition.
How big should the swap file be then?
I added an 8 GiB swap file.
Yes, I totally forgot the values.nix changes.
And yes systemdb-boot works afaik since I did restart the machine. I can try again to confirm.
Yes, there was indeed a change to flake.nix.
@@ -80,0 +82,4 @@ipv4_internal = "192.168.20.11";ipv4_internal_gw = "192.168.20.1";ipv6 = "2001:700:305:aa07::3b3";};LGTM
Should I just merge then?
Yes, sure! It works, and looks good, so if anyone have any other comments/improvements, they can add them later at any time, just merge :)