aboutsummaryrefslogtreecommitdiff
path: root/hosts/c-pc/configuration.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-08 20:11:54 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:53 -0700
commit1eb21c10c217c60e226d168875def24967570a19 (patch)
tree75d41077853ae8be5b94f335b00ec4a662a8aaa9 /hosts/c-pc/configuration.nix
parent3b8a3a4a10a5e85317d37693b74e220a0b99503d (diff)
migration: housekeeping
Diffstat (limited to 'hosts/c-pc/configuration.nix')
-rw-r--r--hosts/c-pc/configuration.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/hosts/c-pc/configuration.nix b/hosts/c-pc/configuration.nix
deleted file mode 100644
index b9590b5..0000000
--- a/hosts/c-pc/configuration.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ config, lib, pkgs, inputs, ... }:
-
-{
- imports = [
- ./hardware.nix
- ./network.nix
- ../../core
- ../../roles
- ];
-
- users.users = {
- root.hashedPasswordFile = "/secrets/passwords/root";
-
- "c" = {
- isNormalUser = true;
- hashedPasswordFile = "/secrets/passwords/c";
- extraGroups = [ "wheel" ];
- };
- };
-
- environment.systemPackages = with pkgs; [
- jellyfin
-
- go
- jdk21
-
- libGL
- ];
-
- system.stateVersion = "23.11";
-}