summaryrefslogtreecommitdiff
path: root/hm
diff options
context:
space:
mode:
Diffstat (limited to 'hm')
-rw-r--r--hm/soft/chat.nix10
-rw-r--r--hm/soft/mangohud.nix28
-rw-r--r--hm/soft/soft.nix2
-rw-r--r--hm/soft/spicetify.nix29
4 files changed, 0 insertions, 69 deletions
diff --git a/hm/soft/chat.nix b/hm/soft/chat.nix
index 90a3887..b886656 100644
--- a/hm/soft/chat.nix
+++ b/hm/soft/chat.nix
@@ -2,24 +2,14 @@
config,
pkgs,
lib,
- inputs,
...
}:
let
cfg = config.hm.soft.chat;
in
{
- imports = [ inputs.nixcord.homeModules.nixcord ];
-
options.hm.soft.chat.enable = lib.mkEnableOption "chatting apps";
config = lib.mkIf cfg.enable {
- programs.nixcord = {
- enable = true;
- discord = {
- vencord.enable = false;
- equicord.enable = true;
- };
- };
home.packages = with pkgs; [
telegram-desktop
simplex-chat-desktop
diff --git a/hm/soft/mangohud.nix b/hm/soft/mangohud.nix
deleted file mode 100644
index 335014c..0000000
--- a/hm/soft/mangohud.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.hm.soft.mangohud;
-in
-{
- options.hm.soft.mangohud.enable = lib.mkEnableOption "mangohud hm config";
- config = lib.mkIf cfg.enable {
- programs.mangohud = {
- enable = true;
- settings = {
- table_columns = 4;
- font_scale = 1.3;
- cellpadding_y = 0.1;
- round_corners = 10;
- fps_limit = 240;
-
- gpu_temp = true;
- gpu_core_clock = true;
-
- cpu_temp = true;
- cpu_mhz = true;
-
- fps_metrics = "0.01";
- wine = true;
- };
- };
- };
-}
diff --git a/hm/soft/soft.nix b/hm/soft/soft.nix
index 127a5fe..2bab675 100644
--- a/hm/soft/soft.nix
+++ b/hm/soft/soft.nix
@@ -6,13 +6,11 @@
./editor.nix
./email.nix
./kdenlive.nix
- ./mangohud.nix
./media.nix
./mpv.nix
./obs.nix
./obsidian.nix
./onlyoffice.nix
- ./spicetify.nix
./torrent.nix
./yt-dlp.nix
./sioyek.nix
diff --git a/hm/soft/spicetify.nix b/hm/soft/spicetify.nix
deleted file mode 100644
index f9a4d0c..0000000
--- a/hm/soft/spicetify.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- inputs,
- pkgs,
- config,
- lib,
- ...
-}:
-let
- cfg = config.hm.soft.spicetify;
- spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
-in
-{
- imports = [ inputs.spicetify-nix.homeManagerModules.default ];
-
- options.hm.soft.spicetify.enable = lib.mkEnableOption "spicetify config";
- config = lib.mkIf cfg.enable {
- programs.spicetify = {
- enable = true;
-
- enabledExtensions = with spicePkgs.extensions; [
- adblockify
- hidePodcasts
- ];
-
- theme = spicePkgs.themes.catppuccin;
- colorScheme = "mocha";
- };
- };
-}