From b45ef040d1e962208e27129af90df34a7b509a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Mon, 15 Apr 2024 18:00:53 +0200 Subject: [PATCH] add some aux programs --- hosts/comfy-station/configuration.nix | 6 +++++- modules/chat/default.nix | 8 ++++++++ modules/desktop/de/plasma.nix | 6 +----- modules/games/default.nix | 8 ++++++++ 4 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 modules/chat/default.nix create mode 100644 modules/games/default.nix diff --git a/hosts/comfy-station/configuration.nix b/hosts/comfy-station/configuration.nix index 9a46c29..9c045ac 100644 --- a/hosts/comfy-station/configuration.nix +++ b/hosts/comfy-station/configuration.nix @@ -16,6 +16,8 @@ ../../modules/services/docker.nix ../../modules/desktop/dm ../../modules/desktop/de + ../../modules/chat + ../../modules/games ]; desktop.dm.name = "sddm"; desktop.dm.autologin = "jonas"; @@ -32,7 +34,6 @@ isNormalUser = true; description = "Jonas"; extraGroups = [ "networkmanager" "wheel" "docker"]; - packages = with pkgs; [ ]; }; users.defaultUserShell = pkgs.zsh; @@ -117,4 +118,7 @@ # touchpad services.xserver.libinput.touchpad.naturalScrolling = true; + + # steam + programs.steam.enable = true; } diff --git a/modules/chat/default.nix b/modules/chat/default.nix new file mode 100644 index 0000000..e427757 --- /dev/null +++ b/modules/chat/default.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ + users.users."jonas".packages = with pkgs; [ + discord + zoom + ]; +} \ No newline at end of file diff --git a/modules/desktop/de/plasma.nix b/modules/desktop/de/plasma.nix index dd6cf89..b8f7701 100644 --- a/modules/desktop/de/plasma.nix +++ b/modules/desktop/de/plasma.nix @@ -16,12 +16,8 @@ in environment.systemPackages = with pkgs; [ utterly-nord-plasma libsForQt5.qtstyleplugin-kvantum - libsForQt5.plasma-browser-integration ]; - # Use kvantum themes - environment.variables = { - "QT_STYLE_OVERRIDE"="kvantum"; - }; + qt.style.name = "kvantum"; }; } \ No newline at end of file diff --git a/modules/games/default.nix b/modules/games/default.nix new file mode 100644 index 0000000..bbb3fa0 --- /dev/null +++ b/modules/games/default.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ + programs.steam.enable = true; + users.users."jonas".packages = with pkgs; [ + lutris + ]; +} \ No newline at end of file