Skip to content

Commit

Permalink
Merge branch 'nixos-unstable'
Browse files Browse the repository at this point in the history
  • Loading branch information
fmway committed Sep 3, 2024
2 parents bb479b4 + d231a9c commit a2940fa
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
4 changes: 1 addition & 3 deletions home-manager/fmway/desktop/wayland/sway/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
enable = true;
wrapperFeatures.gtk = true;
checkConfig = false;
package = pkgs.swayfx-unwrapped.override {
trayEnabled = false;
};
package = pkgs.custom.swayfx;
catppuccin.enable = true;
catppuccin.flavor = "macchiato";
}
5 changes: 4 additions & 1 deletion programs/extra/custom.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ super, self, ... }:
{ super, lib, self, ... }:
{
git = super.git.override { withLibsecret = true; };
obs-studio = self.wrapOBS {
Expand All @@ -8,4 +8,7 @@
obs-pipewire-audio-capture
];
};
swayfx = (self.swayfx-unwrapped.override {
trayEnabled = false;
});
}
14 changes: 14 additions & 0 deletions programs/extra/scenefx.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# required for swayfx
{ self, super, ... }: let
pkgs = self;
in super.scenefx.overrideAttrs (old: {
buildInputs = old.buildInputs ++ (with pkgs; [
cmake
wayland-scanner
]);

nativeBuildInputs = old.nativeBuildInputs ++ (with pkgs;[
wayland-scanner
cmake
]);
})
13 changes: 13 additions & 0 deletions programs/extra/swaylock-effects.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{ self, super, ... }: let
pkgs = self;
in super.swaylock-effects.overrideAttrs (old: {
buildInputs = old.buildInputs ++ (with pkgs; [
cmake
wayland-scanner
]);

nativeBuildInputs = old.nativeBuildInputs ++ (with pkgs;[
wayland-scanner
cmake
]);
})

0 comments on commit a2940fa

Please sign in to comment.