do things
This commit is contained in:
parent
0dc849ff14
commit
5c08802127
14 changed files with 503 additions and 457 deletions
|
|
@ -17,6 +17,8 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
systemd.target = "graphical-session.target";
|
||||
style = ''
|
||||
* {
|
||||
min-height: 0;
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ in {
|
|||
enable = mkBoolOpt false "Enable Git Integration";
|
||||
|
||||
signByDefault = mkBoolOpt true "Sign by default";
|
||||
signingKey = mkStringOpt "5F873416BCF59F35" "The KeyID of your GPG signingKey";
|
||||
signingKey = mkStringOpt "EE8A2B709E2401D1" "The KeyID of your GPG signingKey";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
|
|
|||
|
|
@ -8,4 +8,4 @@ if vim.g.neovide then
|
|||
end
|
||||
|
||||
-- in this case.
|
||||
-- vim.g.lazyvim_blink_main = true
|
||||
vim.g.lazyvim_blink_main = true
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ return {
|
|||
},
|
||||
{
|
||||
"catppuccin",
|
||||
opts = { transparent_background = true, integrations = {
|
||||
opts = { integrations = {
|
||||
blink_cmp = true,
|
||||
} },
|
||||
},
|
||||
|
|
@ -46,12 +46,6 @@ return {
|
|||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"saghen/blink.cmp",
|
||||
opts = {
|
||||
nerd_font_variant = "mono",
|
||||
},
|
||||
},
|
||||
{
|
||||
"folke/snacks.nvim",
|
||||
priority = 1000,
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ in {
|
|||
catppuccin.enable = false;
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
|
||||
# package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
|
||||
extraLuaPackages = ps: [ps.magick];
|
||||
extraPackages = with pkgs; [
|
||||
# Formatters
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ with lib.custom; let
|
|||
cfg = config.wms.hyprland;
|
||||
|
||||
mkService = recursiveUpdate {
|
||||
Unit.PartOf = ["hyprland-session.target"];
|
||||
Unit.After = ["hyprland-session.target"];
|
||||
Install.WantedBy = ["hyprland-session.target"];
|
||||
Unit.PartOf = ["graphical-session.target"];
|
||||
Unit.After = ["graphical-session.target"];
|
||||
Install.WantedBy = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
mod = "SUPER";
|
||||
|
|
@ -46,12 +46,10 @@ in {
|
|||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||
|
||||
systemd = {
|
||||
enable = true;
|
||||
# enableXdgAutostart = true;
|
||||
variables = ["-all"];
|
||||
enable = false;
|
||||
enableXdgAutostart = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -61,7 +59,6 @@ in {
|
|||
# "dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
||||
# "systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
||||
"zen"
|
||||
"telegram-desktop"
|
||||
"thunderbird"
|
||||
"vesktop"
|
||||
"spotify"
|
||||
|
|
@ -76,7 +73,7 @@ in {
|
|||
|
||||
bind =
|
||||
[
|
||||
''${mod},RETURN,exec,${pkgs.ghostty}/bin/ghostty''
|
||||
''${mod},RETURN,exec,${lib.getExe pkgs.kitty}''
|
||||
|
||||
"${mod},D,exec,rofi -show drun"
|
||||
"${mod},Q,killactive"
|
||||
|
|
@ -216,7 +213,6 @@ in {
|
|||
"workspace special silent, title:^(Firefox — Sharing Indicator)$"
|
||||
"workspace special silent, title:^(.*is sharing (your screen|a window)\.)$"
|
||||
|
||||
"opacity 0.9 override,class:^(zen)"
|
||||
"workspace 5, class:^(thunderbird)$"
|
||||
"workspace 4, title:^(.*(Disc|WebC)ord.*)$"
|
||||
"workspace 4, class:^(.*Slack.*)$"
|
||||
|
|
@ -232,12 +228,12 @@ in {
|
|||
|
||||
# # fake a tray to let apps start
|
||||
# # https://github.com/nix-community/home-manager/issues/2064
|
||||
systemd.user.targets.tray = {
|
||||
Unit = {
|
||||
Description = "Home Manager System Tray";
|
||||
Requires = ["graphical-session-pre.target"];
|
||||
};
|
||||
};
|
||||
# systemd.user.targets.tray = {
|
||||
# Unit = {
|
||||
# Description = "Home Manager System Tray";
|
||||
# Requires = ["graphical-session-pre.target"];
|
||||
# };
|
||||
# };
|
||||
|
||||
systemd.user.services = {
|
||||
swaybg = mkService {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue