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 = {
enable = true;
openFirewall = true;
# package = pkgs.unstable_pkgs.home-assistant;
config = {
default_config = { };

View file

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

View file

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

View file

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

View file

@ -1,4 +1,4 @@
{ 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
home.packages = [ pkgs.unstable_pkgs.joshuto ];
home.packages = [ pkgs.joshuto ];
home.shellAliases."fm" = "joshuto --change-directory";
xdg.configFile = {

View file

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

View file

@ -14,44 +14,42 @@ in
{
home.packages = builtins.attrValues {
inherit (pkgs)
ardour
breeze-icons
carla
mixxx
rnnoise
#mamba
# zrythm
# 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
# noise-repellent
# speech-denoiser
# stochas
# sunvox
# 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;

View file

@ -2,6 +2,6 @@
{
home.packages = builtins.attrValues {
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
, ...
}:
@ -26,7 +25,6 @@
};
services.garage = {
package = pkgs.unstable_pkgs.garage;
enable = true;
settings = {
replication_mode = 1;

View file

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