From fcddd3ba06088e235243d41395e40fd9e0107a76 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 1 Oct 2024 06:02:50 -0700 Subject: modules: move shared pc modules from desktop to pc --- hosts/fina/default.nix | 34 ++-------------------------------- 1 file changed, 2 insertions(+), 32 deletions(-) (limited to 'hosts/fina/default.nix') diff --git a/hosts/fina/default.nix b/hosts/fina/default.nix index 30f7dcd..b1395c6 100644 --- a/hosts/fina/default.nix +++ b/hosts/fina/default.nix @@ -1,5 +1,4 @@ { - secrets, self, ... }: @@ -14,21 +13,16 @@ config = { modules.nix.extend = false; system.stateVersion = "24.05"; + networking.hostName = "fina"; + programs.mtr.enable = true; boot = { loader.systemd-boot.enable = true; loader.efi.canTouchEfiVariables = true; }; - networking = { - hostName = "fina"; - networkmanager.enable = true; - }; - services = { desktopManager.plasma6.enable = true; - printing.enable = true; - libinput.enable = true; displayManager.sddm = { enable = true; @@ -40,34 +34,10 @@ options = "caps:escape"; }; - pipewire = { - enable = true; - pulse.enable = true; - }; - openssh = { enable = true; settings.PermitRootLogin = "yes"; }; }; - - users.users = { - root.initialHashedPassword = secrets.initial_hashed_password; - - ebisu = { - isNormalUser = true; - extraGroups = [ "wheel" ]; - initialHashedPassword = secrets.initial_hashed_password; - }; - }; - - programs = { - mtr.enable = true; - - gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - }; }; } -- cgit v1.2.3