cleanup
This commit is contained in:
parent
cf1de4bf9d
commit
570e6e658a
11 changed files with 34 additions and 28 deletions
|
@ -83,18 +83,6 @@ in
|
|||
# sway_conf = pkgs.writeText "sway.conf" text;
|
||||
in
|
||||
with cfg; lib.mkIf (enable && sway.enable) {
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
wlroots = prev.wlroots.overrideAttrs (o: {
|
||||
patches = (o.patches or [ ]) ++ [
|
||||
./patches/lessflicker.patch
|
||||
# ./patches/screenshare.patch
|
||||
];
|
||||
});
|
||||
})
|
||||
];
|
||||
|
||||
|
||||
environment.etc."${conf_path}".text = sway_conf;
|
||||
|
||||
environment.systemPackages = [
|
||||
|
@ -120,6 +108,8 @@ in
|
|||
${config.programs.sway.package}/bin/swaymsg reload
|
||||
fi
|
||||
done
|
||||
|
||||
rm -rf /home/*/.cache/rmenu
|
||||
'';
|
||||
reloadTriggers = [ config.environment.etc."${conf_path}".source ];
|
||||
};
|
||||
|
@ -158,7 +148,7 @@ in
|
|||
export MOZ_ENABLE_WAYLAND=1
|
||||
export WLR_RENDERER=vulkan
|
||||
export DRI_PRIME=1
|
||||
# export MESA_LOADER_DRIVER_OVERRIDE="zink"
|
||||
export NIXOS_OZONE_WL=1
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
|
@ -31,7 +31,7 @@ in
|
|||
"pcie_aspm=off"
|
||||
]; # "vfio-pci.ids=10de:1aeb,10de:2191,10de:1aed,10de:1aec" ];
|
||||
kernelModules = [ "kvm-intel" "vfio_pci" "vfio_iommu_type1" "vfio" "i2c-dev" ];
|
||||
blacklistedKernelModules = ["i2c_nvidia_gpu"];
|
||||
blacklistedKernelModules = [ "i2c_nvidia_gpu" ];
|
||||
};
|
||||
|
||||
services.power-profiles-daemon.enable = false;
|
||||
|
|
|
@ -3,7 +3,7 @@ let
|
|||
cfg = config.grimmShared;
|
||||
in
|
||||
{
|
||||
config = with cfg; lib.mkIf (enable && network && config.hardware.bluetooth.enable ) {
|
||||
config = with cfg; lib.mkIf (enable && network && config.hardware.bluetooth.enable) {
|
||||
services.blueman.enable = lib.mkIf graphical true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
./modules/users.nix
|
||||
./modules/system-packages.nix
|
||||
./modules/kvm.nix
|
||||
./overlays
|
||||
{ environment.systemPackages = [ agenix.packages.${system}.default ]; }
|
||||
];
|
||||
};
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
geany
|
||||
webcord
|
||||
discord
|
||||
obs-studio
|
||||
kwrited
|
||||
element-desktop
|
||||
ghidra
|
||||
|
|
6
overlays/default.nix
Normal file
6
overlays/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ lib, config, ... }: {
|
||||
nixpkgs.overlays = map (f: (final: prev: (import f { inherit final prev lib config;})))
|
||||
[
|
||||
./wlr_flicker.nix
|
||||
];
|
||||
}
|
8
overlays/wlr_flicker.nix
Normal file
8
overlays/wlr_flicker.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ final, prev, ... }: {
|
||||
wlroots = prev.wlroots.overrideAttrs (o: {
|
||||
patches = (o.patches or [ ]) ++ [
|
||||
# ./patches/lessflicker.patch
|
||||
# ./patches/screenshare.patch
|
||||
];
|
||||
});
|
||||
}
|
|
@ -92,7 +92,7 @@
|
|||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"on-click": "rmenu -r powermenu"
|
||||
"on-click": "rmenu -r powermenu --single-click true"
|
||||
},
|
||||
"battery#bat2": {
|
||||
"bat": "BAT2"
|
||||
|
@ -104,7 +104,7 @@
|
|||
"format-linked": "{ifname} (No IP) ",
|
||||
"format-disconnected": "Disconnected ⚠",
|
||||
"format-alt": "{ifname}: {ipaddr}/{cidr}",
|
||||
"on-click-right": "rmenu -r network"
|
||||
"on-click-right": "rmenu -r network --single-click true"
|
||||
},
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
|
|
Loading…
Reference in a new issue