aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/c-pc/configuration.nix31
-rw-r--r--hosts/c-pc/home.nix29
2 files changed, 0 insertions, 60 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";
-}
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix
deleted file mode 100644
index 7fc00d6..0000000
--- a/hosts/c-pc/home.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ config, lib, pkgs, inputs, ...}:
-
-{
- imports = [
- inputs.impermanence.nixosModules.home-manager.impermanence
-
- ../../roles/home
- ];
-
- # theme.nix is an untracked symlink to a theme under ./themes/
- # This lets me switch out my theme without making changes in git
- theme = import ../../theme.nix;
-
- home.persistence."/persist/home" = {
- allowOther = true;
-
- directories = [
- ".config/jellyfin"
- ".local/share/jellyfin"
- ".cache/jellyfin"
- ];
- };
-
- home.packages = with pkgs; [
- mkvtoolnix
- ];
-
- home.stateVersion = "23.11";
-}