This commit is contained in:
Filippo Berto 2024-10-21 20:02:16 +02:00
parent 8abafd73f4
commit c103109233
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
11 changed files with 45 additions and 57 deletions

View file

@ -300,7 +300,6 @@ in
services.home-assistant = { services.home-assistant = {
enable = true; enable = true;
openFirewall = true; openFirewall = true;
# package = pkgs.unstable_pkgs.home-assistant;
config = { config = {
default_config = { }; default_config = { };

View file

@ -5,24 +5,19 @@
, ... , ...
}: }:
{ {
boot.initrd.kernelModules = [ "i915" ];
boot = { hardware.nvidia = {
initrd.kernelModules = [ "i915" ]; # modesetting.enable = true;
# kernelPackages = pkgs.unstable_pkgs.linuxPackages; # package = pkgs.linuxPackages.nvidia_x11;
}; open = false;
prime = {
hardware.nvidia = offload.enable = false;
{ sync.enable = true;
# modesetting.enable = true; intelBusId = "PCI:0:2:0";
# package = pkgs.linuxPackages.nvidia_x11; nvidiaBusId = "PCI:1:0:0";
open = false;
prime = {
offload.enable = false;
sync.enable = true;
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
}; };
};
programs.gamemode = { programs.gamemode = {
enable = true; enable = true;

View file

@ -130,7 +130,7 @@
# ../../modules/hm/screen_locker.nix # ../../modules/hm/screen_locker.nix
# ../../modules/hm/security.nix # ../../modules/hm/security.nix
# ../../modules/hm/spotifyd.nix # ../../modules/hm/spotifyd.nix
../../modules/hm/sxhkd.nix # ../../modules/hm/sxhkd.nix
../../modules/hm/syncthing.nix ../../modules/hm/syncthing.nix
# ../../modules/hm/thunar.nix # ../../modules/hm/thunar.nix
# ../../modules/hm/twmn.nix # ../../modules/hm/twmn.nix

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = [ (pkgs.unstable_pkgs.blender.override { cudaSupport = true; }) ]; home.packages = [ (pkgs.blender.override { cudaSupport = true; }) ];
} }

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = builtins.attrValues { inherit (pkgs.unstable_pkgs.jetbrains) datagrip jdk; }; home.packages = builtins.attrValues { inherit (pkgs.jetbrains) datagrip jdk; };
} }

View file

@ -5,7 +5,7 @@ in
{ {
# TODO: switch to module on next release # TODO: switch to module on next release
home.packages = [ pkgs.unstable_pkgs.joshuto ]; home.packages = [ pkgs.joshuto ];
home.shellAliases."fm" = "joshuto --change-directory"; home.shellAliases."fm" = "joshuto --change-directory";
xdg.configFile = { xdg.configFile = {

View file

@ -1,7 +1,6 @@
{ {
programs.nix-index = { programs.nix-index = {
enable = true; enable = true;
# package = pkgs.unstable_pkgs.nix-index;
enableBashIntegration = true; enableBashIntegration = true;
enableZshIntegration = true; enableZshIntegration = true;
}; };

View file

@ -14,44 +14,42 @@ in
{ {
home.packages = builtins.attrValues { home.packages = builtins.attrValues {
inherit (pkgs) inherit (pkgs)
ardour
breeze-icons
carla
mixxx
rnnoise
#mamba
# zrythm
# Plugins # Plugins
aeolus
artyFX
autotalent
boops
calf
cardinal
fluidsynth
geonkick
giada
lsp-plugins
samplv1
sfizz
surge
surge-XT
talentedhack
vocproc
x42-plugins
zita-at1
zyn-fusion
zynaddsubfx
# helm # helm
# noise-repellent # noise-repellent
# speech-denoiser # speech-denoiser
# stochas # stochas
# sunvox # sunvox
# tunefish # tunefish
# zrythm
#mamba
aeolus
ardour
artyFX
autotalent
boops
breeze-icons
calf
cardinal
carla
fluidsynth
geonkick
giada
lsp-plugins
mixxx
rnnoise
samplv1
sfizz
surge
surge-XT
talentedhack
vital
vocproc
x42-plugins
zita-at1
zyn-fusion
zynaddsubfx
; ;
inherit (pkgs.unstable_pkgs) vital;
}; };
home.sessionVariables = variables; home.sessionVariables = variables;

View file

@ -2,6 +2,6 @@
{ {
home.packages = builtins.attrValues { home.packages = builtins.attrValues {
inherit (pkgs) python3; inherit (pkgs) python3;
inherit (pkgs.unstable_pkgs.jetbrains) pycharm-professional jdk; inherit (pkgs.jetbrains) pycharm-professional jdk;
}; };
} }

View file

@ -1,5 +1,4 @@
{ pkgs { config
, config
, lib , lib
, ... , ...
}: }:
@ -26,7 +25,6 @@
}; };
services.garage = { services.garage = {
package = pkgs.unstable_pkgs.garage;
enable = true; enable = true;
settings = { settings = {
replication_mode = 1; replication_mode = 1;

View file

@ -2,7 +2,6 @@
{ {
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;
# package = pkgs.unstable_pkgs.hyprland;
# enableNvidiaPatches = builtins.elem "nvidia" config.services.xserver.videoDrivers; # removed in 24.x # enableNvidiaPatches = builtins.elem "nvidia" config.services.xserver.videoDrivers; # removed in 24.x
xwayland.enable = true; xwayland.enable = true;
}; };