diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-04 22:26:52 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:45 -0700 |
| commit | 1f5c44989e3f4432045f6e4178238db42e0f765e (patch) | |
| tree | c56b31155e1b6a1fb1cc6a652eef5b41aea45513 /hosts/phoenix/configuration.nix | |
| parent | 3dd1a6d822248204f8b2a2ea147ebca533e21f62 (diff) | |
migration: remove obsolete laptop config
Diffstat (limited to 'hosts/phoenix/configuration.nix')
| -rw-r--r-- | hosts/phoenix/configuration.nix | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/hosts/phoenix/configuration.nix b/hosts/phoenix/configuration.nix deleted file mode 100644 index 80dbb06..0000000 --- a/hosts/phoenix/configuration.nix +++ /dev/null @@ -1,86 +0,0 @@ -{ 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" - ]; - - files = [ - "/etc/machine-id" - ]; - }; - - programs.fuse.userAllowOther = true; - - networking = { - hostName = "phoenix"; - hostId = "d62900ff"; - - networkmanager.enable = true; - }; - - time.timeZone = "America/Los_Angeles"; - - users.users = { - root.hashedPasswordFile = "/secrets/passwords/root"; - - "c" = { - isNormalUser = true; - hashedPasswordFile = "/secrets/passwords/c"; - extraGroups = [ "wheel" ]; - openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re" ]; - }; - }; - - home-manager = { - extraSpecialArgs = { inherit inputs; }; - users = { - "c" = import ./home.nix; - }; - }; - - roles = { - desktop.enable = true; - }; - - programs = { - gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - - dconf.enable = true; - }; - - services = { - pcscd.enable = true; - openssh = { - enable = true; - settings = { - PermitRootLogin = "no"; - PasswordAuthentication = false; - }; - }; - }; - - environment.systemPackages = with pkgs; [ - ffmpeg - firefox - ]; - - system.stateVersion = "24.05"; -} |