Arc changes
2 files changed, 14 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index ec2d466..aff54f2 100755
--- a/flake.nix
+++ b/flake.nix
@@ -312,6 +312,10 @@
];
specialArgs = {
inherit home-manager;
+ inherit nixpkgs-stable;
+
+ inherit (inputs) mtxclientSrc;
+ inherit (inputs) nhekoSrc;
inherit hyprland;
inherit hy3;
};
diff --git a/host/Arc/configuration.nix b/host/Arc/configuration.nix
index f12348c..0edd0ed 100644
--- a/host/Arc/configuration.nix
+++ b/host/Arc/configuration.nix
@@ -92,13 +92,13 @@ args@{
environment.systemPackages = with pkgs; [
eog
#mpv
- #libreoffice
+ libreoffice
qt6.qtwayland
#easyeffects
kitty
#youtube-music
-
+ jetbrains.rider
dbeaver-bin
vscode
@@ -129,9 +129,16 @@ args@{
#prismlauncher
#vesktop
#mindustry
+ thunderbird
blueman
ft2-clone
+
+ (callPackage ../../packages/nheko-git.nix {
+ inherit nhekoSrc;
+ inherit mtxclientSrc;
+ voipSupport = false;
+ })
];
programs.steam = {
@@ -206,6 +213,7 @@ args@{
};
programs.dconf.enable = true;
+ services.power-profiles-daemon.enable = true;
#networking.wireguard.interfaces = {
# wg-KP-Ran = {
|