diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 23:19:40 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:53 -0700 |
| commit | 596308634840634c216e8f1f1db8920886df0aa4 (patch) | |
| tree | 7e55f6c8e8e6864067f293dce6c4ac4d5a3dd393 /hosts/copenhagen/configuration.nix | |
| parent | 1cfb12afdddce77ab2a8c430b53faf9d8d31d920 (diff) | |
migration: start copenhagen config
Diffstat (limited to 'hosts/copenhagen/configuration.nix')
| -rw-r--r-- | hosts/copenhagen/configuration.nix | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/hosts/copenhagen/configuration.nix b/hosts/copenhagen/configuration.nix index f66a1a9..73cacac 100644 --- a/hosts/copenhagen/configuration.nix +++ b/hosts/copenhagen/configuration.nix @@ -1,45 +1,15 @@ { config, lib, pkgs, inputs, ... }: { - imports = [ - ./hardware.nix - ../../core - ../../roles - ]; - - nix.settings.experimental-features = [ "nix-command" "flakes" ]; - environment.persistence."/persist/system" = { - hideMounts = true; - directories = [ - "/etc/nixos" - "/var/log" - "/var/lib/nixos" - "/var/lib/systemd/coredump" - "/var/lib/acme" "/srv/web" "/srv/minecraft" ]; - - files = [ - "/etc/machine-id" - ]; }; - programs.fuse.userAllowOther = true; - - networking = { - hostName = "copenhagen"; - hostId = "a50062ff"; - - useDHCP = true; - }; - - time.timeZone = "America/Los_Angeles"; - users.users = { root.hashedPasswordFile = "/secrets/passwords/root"; @@ -54,13 +24,6 @@ }; }; - home-manager = { - extraSpecialArgs = { inherit inputs; }; - users = { - "c" = import ./home/c.nix; - }; - }; - roles = { minecraft = { enable = true; @@ -106,6 +69,4 @@ environment.systemPackages = with pkgs; [ ffmpeg ]; - - system.stateVersion = "23.11"; } |