summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-11-21 22:44:03 +0100
committeradikro <adikro@disroot.org>2025-11-21 22:44:03 +0100
commitd3c39950f6c17c621acd0f395bd5a603a7957feb (patch)
tree35cca5550400644e351c4870b14af83c9ed29bb5
parente1f486563c722b3fa9f4d481feb874998e7b7da3 (diff)
a lot of shit
-rw-r--r--home/programs/nixcord.nix10
-rw-r--r--modules/boot.nix5
-rw-r--r--modules/hyprland.nix1
-rw-r--r--modules/networking.nix2
-rw-r--r--modules/scx.nix16
5 files changed, 16 insertions, 18 deletions
diff --git a/home/programs/nixcord.nix b/home/programs/nixcord.nix
index 2f73eb1..f80b0b9 100644
--- a/home/programs/nixcord.nix
+++ b/home/programs/nixcord.nix
@@ -65,11 +65,11 @@
noDevtoolsWarning.enable = true;
noF1.enable = true;
noMosaic.enable = true;
- noPendingCount = {
- enable = true;
- hideFriendRequestsCount = false;
- hideMessageRequestCount = false;
- };
+ # noPendingCount = {
+ # enable = true;
+ # hideFriendRequestsCount = false;
+ # hideMessageRequestCount = false;
+ # };
noProfileThemes.enable = true;
noTrack.enable = true;
noTypingAnimation.enable = true;
diff --git a/modules/boot.nix b/modules/boot.nix
index 2d8f78a..6930a51 100644
--- a/modules/boot.nix
+++ b/modules/boot.nix
@@ -6,7 +6,7 @@
systemd-boot = {
enable = true;
editor = false;
- configurationLimit = 10;
+ configurationLimit = null;
};
timeout = 0;
};
@@ -16,8 +16,7 @@
kernelParams = [
"video=DP-1:2560x1440@240"
"quiet"
- "nvme"
];
- kernelPackages = pkgs.linuxPackages_cachyos-rc.cachyOverride { mArch = "ZEN4"; };
+ kernelPackages = pkgs.linuxPackages_cachyos-lto.cachyOverride { mArch = "ZEN4"; };
};
}
diff --git a/modules/hyprland.nix b/modules/hyprland.nix
index f3e35fa..295cd7d 100644
--- a/modules/hyprland.nix
+++ b/modules/hyprland.nix
@@ -3,5 +3,6 @@
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
+ # package = pkgs.hyprland;
};
}
diff --git a/modules/networking.nix b/modules/networking.nix
index 29de399..9d1212d 100644
--- a/modules/networking.nix
+++ b/modules/networking.nix
@@ -1,6 +1,6 @@
{ ... }:
{
- systemd.services."NetworkManager-wait-online".enable = false;
+ # systemd.services."NetworkManager-wait-online".enable = false;
networking = {
hostName = "szpont";
diff --git a/modules/scx.nix b/modules/scx.nix
index b1f5dad..b6af15c 100644
--- a/modules/scx.nix
+++ b/modules/scx.nix
@@ -1,14 +1,12 @@
-{ config, pkgs, ... }:
-
+{ ... }:
{
services.scx = {
enable = true;
-
- scheduler = "scx_lavd";
- extraArgs =[
- ''
- --performance
- ''
- ];
+ scheduler = "scx_rusty";
+ # extraArgs =[
+ # ''
+ # --performance
+ # ''
+ # ];
};
}