From 9645a2902611ba08817099141112ac23a0b460fb Mon Sep 17 00:00:00 2001 From: mrfluffy-dev Date: Wed, 13 Aug 2025 00:28:39 +0100 Subject: [PATCH] laptop stuff --- dots/hyprland.nix | 2 +- hardware-configuration.nix | 2 +- home/homePkgs.nix | 4 ++-- system/nixOSPkgs.nix | 7 +++--- system/services.nix | 48 -------------------------------------- 5 files changed, 8 insertions(+), 55 deletions(-) diff --git a/dots/hyprland.nix b/dots/hyprland.nix index 2c4595b..8c1463d 100755 --- a/dots/hyprland.nix +++ b/dots/hyprland.nix @@ -13,7 +13,7 @@ let terminal = "footclient"; fileManager = "dolphin"; runner = "${lib.getExe caelestia-cli} shell drawers toggle launcher"; - browser = "zen"; + browser = "zen-beta"; editor = "emacsclient -c"; in { diff --git a/hardware-configuration.nix b/hardware-configuration.nix index bee0065..8f78ce9 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -56,7 +56,7 @@ fsType = "vfat"; }) (lib.mkIf (systemName == "laptop") { - device = "/dev/disk/by-uuid/A4F3-8038"; + device = "/dev/disk/by-uuid/FF4B-819D"; fsType = "vfat"; options = [ "fmask=0077" diff --git a/home/homePkgs.nix b/home/homePkgs.nix index 7c278c7..1f88362 100755 --- a/home/homePkgs.nix +++ b/home/homePkgs.nix @@ -27,7 +27,8 @@ in id = 0; name = "default"; isDefault = true; - }; }; + }; + }; programs.nix-index.enable = true; programs.lazygit.enable = true; @@ -215,7 +216,6 @@ in fuse-emulator fuse3 alacritty - networkmanagerapplet #inputs.way-inhibitor.packages.${pkgs.system}.default #inputs.zen-browser.packages.${pkgs.system}.twilight #inputs.quickshell.packages.${pkgs.system}.default diff --git a/system/nixOSPkgs.nix b/system/nixOSPkgs.nix index cc55ca5..6e792c3 100755 --- a/system/nixOSPkgs.nix +++ b/system/nixOSPkgs.nix @@ -84,8 +84,6 @@ in # # - - programs.nh = { enable = true; clean.enable = true; @@ -156,7 +154,10 @@ in #backlight tool programs.light.enable = true; - programs.nm-applet.enable = true; + programs.nm-applet = { + enable = true; + indicator = false; + }; # List packages installed in system profile. To search, run: # $ nix search wget diff --git a/system/services.nix b/system/services.nix index 10a6622..3a22fbc 100755 --- a/system/services.nix +++ b/system/services.nix @@ -65,55 +65,7 @@ ]; }; }; - #"93-mic-gain" = { - # "context.modules" = [ - # { - # name = "libpipewire-module-filter-chain"; - # args = { - # node.description = "Mic Gain Boost"; - # media.name = "Mic Gain Boost"; - # filter.graph = { - # nodes = [ - # { - # type = "ladspa"; - # name = "gain"; - # plugin = "amp"; # LADSPA amplifier plugin - # label = "amp_mono"; - # control = { - # "Gain" = 12.0; # Boost gain by 12 dB (adjust as needed) - # }; - # } - # ]; - # }; - # capture.props = { - # "node.name" = "effect_input.mic_boost"; - # "audio.position" = [ "MONO" ]; - # }; - # playback.props = { - # "node.name" = "effect_output.mic_boost"; - # "audio.position" = [ "MONO" ]; - # }; - # }; - # } - # ]; - #}; }; - #wireplumber.extraConfig = { - # "monitor.alsa.rules" = { - # rule1 = { # Give the rule a unique name - # matches = [ - # { "node.name" = "~alsa_input.*"; } - # ]; - # actions = { - # update-props = { - # "api.alsa.soft-mixer" = true; - # "api.alsa.volume" = "100%"; - # "api.alsa.headroom" = 0; - # }; - # }; - # }; - # }; - #}; }) ];