Skip to content

Commit

Permalink
fix alot of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraTenshi committed Jan 7, 2025
1 parent 2fdc1a3 commit f617c94
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
5 changes: 0 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@
nixos-wsl.nixosModules.wsl
];
extraHomeModules = [
ghostty.homeModules.default
];
};

Expand All @@ -138,7 +137,6 @@
];
extraHomeModules = [
ags.homeManagerModules.default
ghostty.homeModules.default
nix-flatpak.homeManagerModules.nix-flatpak
];
monitors = [
Expand All @@ -160,7 +158,6 @@
];
extraHomeModules = [
ags.homeManagerModules.default
ghostty.homeModules.default
# nix-flatpak.homeManagerModules.nix-flatpak
];
};
Expand All @@ -187,7 +184,6 @@
];
extraHomeModules = [
ags.homeManagerModules.default
ghostty.homeModules.default
];
monitors = [
"eDP-1,1920x1200@60,0x0"
Expand All @@ -208,7 +204,6 @@
];
extraHomeModules = [
ags.homeManagerModules.default
ghostty.homeModules.default
];
monitors = [
"HDMI-A-7,1920x1080@60,960x0"
Expand Down
7 changes: 4 additions & 3 deletions home/ghostty/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{ inputs, system, ... }:
_:
{
programs.ghostty = {
enable = true;
package = inputs.ghostty.packages."${system}".default;
enableZshIntegration = true;

settings = {
background-opacity = 0.8;
background-blur-radius = 29;

# because fuck blinking bars. they are obnoxious
shell-integration-features = "no-cursor";

font-family = "Lilex Nerd Font Mono";
font-variation = "wght=100";
font-size = "18";
Expand All @@ -26,7 +28,6 @@

window-theme = "dark";
window-decoration = false;

};
};
}
1 change: 1 addition & 0 deletions home/stylix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ in
vim.enable = false;
kitty.enable = false;
k9s.enable = false;
ghostty.enable = false;
};
};
}
4 changes: 2 additions & 2 deletions home/wayland/hyprland/binds.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ username, ... }:
_:
let
terminal = "kitty";
other-terminal = "/home/${username}/.local/bin/ghostty";
other-terminal = "ghostty";
zipWith = f: xs: ys:
if xs == [ ] || ys == [ ] then
[ ]
Expand Down
8 changes: 4 additions & 4 deletions home/wayland/hyprland/settings.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ in {
"workspace,9,class:^(keepassxc)$"

# Smart Gaps
"bordersize:0,floating:0,onworkspace:w[tv1]"
"rounding:0,floating:0,onworkspace:w[tv1]"
"bordersize:0,floating:0,onworkspace:f[1]"
"rounding:0,floating:0,onworkspace:f[1]"
"bordersize 0,floating:0,onworkspace:w[tv1]"
"rounding 0,floating:0,onworkspace:w[tv1]"
"bordersize 0,floating:0,onworkspace:f[1]"
"rounding 0,floating:0,onworkspace:f[1]"
];

workspace = (builtins.concatMap workspaces keys) ++ [
Expand Down

0 comments on commit f617c94

Please sign in to comment.