Add NixOS config for nachtigall #4
Labels
No labels
Bug
Docs
Feature request
Good for newcomers
Infra
Privacy
Refactoring or migration
Security
No milestone
No project
No assignees
4 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: pub-solar/infra#4
Loading…
Reference in a new issue
No description provided.
Delete branch "nachtigall"
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?
13af3bdef5
tod232dbe2e4
@ -76,4 +54,3 @@
};
# All nixos/nix-darwin configurations are kept here.
nixosModules = {
Same here, to reduce complexity in flake.nix I moved these to
modules/default.nix
https://git.pub.solar/b12f/os/src/branch/b12f/modules/default.nix
@ -33,3 +35,2 @@
{
# Configurations for Linux (NixOS) machines
in {
nixosConfigurations = {
To reduce complexity on flake.nix, I moved these to a separate flake modules in https://git.pub.solar/b12f/os/src/branch/b12f/hosts/default.nix
@ -0,0 +42,4 @@
networking.hostId = "00000001";
# enable flakes by default
nix = {
I'd pref already having trusted-users here
https://git.pub.solar/b12f/os/src/branch/b12f/modules/nix/default.nix#L8
Just one nit. Big approval 👍
@ -0,0 +53,4 @@
time.timeZone = "Etc/UTC";
environment = {
enableDebugInfo = true;
We can probably remove this line.
21ece58e9d
tod935c946b5