From 4b954a7e830cb9d2131744e213529eac8cc3d3ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Fri, 25 Nov 2022 11:27:43 +0100 Subject: [PATCH] fix(tabula): networking, sound --- configs/ssh.nix | 5 +++++ systems/tabula/configuration.nix | 20 +++++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/configs/ssh.nix b/configs/ssh.nix index 71873a8..c735b27 100644 --- a/configs/ssh.nix +++ b/configs/ssh.nix @@ -49,6 +49,11 @@ in { user = "root"; port = sshPort; }; + tabula = { + hostname = "tabula.r"; + user = "root"; + port = sshPort; + }; manakish = { hostname = "manakish.r"; user = "kfm"; diff --git a/systems/tabula/configuration.nix b/systems/tabula/configuration.nix index 0330bca..a740cde 100644 --- a/systems/tabula/configuration.nix +++ b/systems/tabula/configuration.nix @@ -14,10 +14,7 @@ in { nix.nixPath = ["/var/src"]; - console.keyMap = "en"; - i18n.defaultLocale = "de_DE.UTF-8"; services.xserver = { - layout = "en"; libinput.enable = true; }; @@ -30,19 +27,14 @@ in { services.xserver = { enable = true; - desktopManager.pantheon.enable = true; + desktopManager.lxqt.enable = true; displayManager = { - lightdm = { - enable = true; - greeters.pantheon.enable = true; - }; autoLogin = { enable = true; user = "xenos"; }; }; }; - boot.plymouth.enable = true; environment.systemPackages = [ pkgs.libreoffice @@ -50,17 +42,23 @@ in { pkgs.inkscape pkgs.firefox pkgs.pidgin + pkgs.git + pkgs.vim ]; networking = { useDHCP = false; interfaces = { - enp0s25.useDHCP = true; - wlo1.useDHCP = true; + enp0s4.useDHCP = true; + wlp2s0.useDHCP = true; }; retiolum = retiolumAddresses.tabula; hostName = "tabula"; }; + sound.enable = true; + hardware.pulseaudio.enable = true; + networking.networkmanager.enable = true; + system.stateVersion = "21.11"; }