Changed things

This commit is contained in:
2024-08-15 17:31:55 -03:00
parent 16cf28085f
commit 53737ff1fc
2 changed files with 13 additions and 7 deletions

View File

@@ -20,15 +20,13 @@ in {
name = pkgs.vscodium.name; name = pkgs.vscodium.name;
paths = [pkgs.vscodium]; paths = [pkgs.vscodium];
buildInputs = [pkgs.vscodium pkgs.makeWrapper]; buildInputs = [pkgs.vscodium pkgs.makeWrapper];
/*
postBuild = '' postBuild = ''
wrapProgram $out/bin/codium \ wrapProgram $out/bin/codium \
--add-flags "--enable-features=UseOzonePlatform" \ --add-flags "--enable-features=UseOzonePlatform" \
--add-flags "--enable-features=WaylandWindowDecorations" \ --add-flags "--enable-features=WaylandWindowDecorations" \
--add-flags "--ozone-platform=wayland" \ --add-flags "--ozone-platform=wayland"
--add-flags "--disable-features=WaylandFractionalScaleV1"
''; '';
*/
pname = pkgs.vscodium.pname; pname = pkgs.vscodium.pname;
version = pkgs.vscodium.version; version = pkgs.vscodium.version;

View File

@@ -6,12 +6,19 @@
package = pkgs.hyprland; package = pkgs.hyprland;
# Whether to enable XWayland # Whether to enable XWayland
xwayland.enable = true; xwayland.enable = true;
plugins = [
pkgs.hyprlandPlugins.hyprspace
];
# Optional # Optional
# Whether to enable hyprland-session.target on hyprland startup # Whether to enable hyprland-session.target on hyprland startup
systemd.enable = true; systemd.enable = true;
settings = { settings = {
xwayland = {
force_zero_scaling = true;
};
"$mainMod" = "SUPER"; "$mainMod" = "SUPER";
"$terminal" = "kitty"; "$terminal" = "kitty";
"$fileManager" = "dolphin"; "$fileManager" = "dolphin";
@@ -20,7 +27,6 @@
exec-once = [ exec-once = [
# run once on startup # run once on startup
"pyper"
]; ];
bind = [ bind = [
@@ -68,6 +74,8 @@
"workspace_swipe" = true; "workspace_swipe" = true;
"workspace_swipe_fingers" = 3; "workspace_swipe_fingers" = 3;
}; };
workspace = ["special:exposed,gapsout:60,gapsin:30,bordersize:5,border:true,shadow:false"];
}; };
}; };
programs.ags = { programs.ags = {
@@ -95,6 +103,6 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
pyprland brightnessctl
]; ];
} }