Skip to content

Commit

Permalink
pkgs: use _64gram nix package, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRTitor committed Nov 4, 2024
1 parent 11a1fff commit f5991e1
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 47 deletions.
86 changes: 43 additions & 43 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion modules-overlays/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
lib,
pkgs,
pkgs-edge,
pkgs-master,
inputs,
...
}: {
imports = [
#./amdgpu.nix # import modules here to test
"${inputs.nixpkgs-scx-test}/nixos/modules/services/scheduling/scx.nix"
];

nixpkgs.overlays = [
(final: prev: {
_7zz = pkgs-master._7zz;
pyprland = pkgs-master.pyprland;
})
];
}
1 change: 0 additions & 1 deletion pkgs/flatpak-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

userPackages = [
# Flatpak packages to be installed on a per user basis
"io.github.tdesktop_x64.TDesktop" # 64Gram
"im.riot.Riot" # Element Matrix Client
"dev.vencord.Vesktop" # Vesktop
];
Expand Down
2 changes: 2 additions & 0 deletions pkgs/user-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@
mission-center # Taskmanager clone
warp # file transfer, also install android app
clapper

_64gram
])
++ (with pkgs-edge; [
# list of latest packages from nixpkgs master
Expand Down
2 changes: 1 addition & 1 deletion system/services/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# Enable scx extra schedulers, only available for linux-cachyos
services.scx.enable = true;
services.scx.package = pkgs-master.scx.full;
services.scx.package = pkgs.scx.full;
# rustland is better and causes less lag in high load, even better than bpfland
services.scx.scheduler = "scx_rustland";
services.scx.extraArgs = [
Expand Down
2 changes: 1 addition & 1 deletion system/users.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
shell =
if (userSettings.shell == "zsh")
then pkgs.zsh
else pkgs.bash;
else pkgs.bashInteractive;
};
}

0 comments on commit f5991e1

Please sign in to comment.