diff options
| author | caley <u65487754@gmail.com> | 2026-06-11 23:34:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-11 23:34:59 +0200 |
| commit | 6556252a2c0c5552caaa1ea1fc6a7280f6377801 (patch) | |
| tree | 6467ba150d3943112ec4dd8755672b7ed5c762b2 /nixos/mngr.nix | |
| parent | 2ed2e679b408e31742f287f080673de7e2b9211f (diff) | |
Update mngr.nix
Diffstat (limited to 'nixos/mngr.nix')
| -rw-r--r-- | nixos/mngr.nix | 61 |
1 files changed, 2 insertions, 59 deletions
diff --git a/nixos/mngr.nix b/nixos/mngr.nix index 17108d7..2d0898b 100644 --- a/nixos/mngr.nix +++ b/nixos/mngr.nix @@ -1,18 +1,9 @@ -{ config, pkgs, ... }: - -{ - imports = [ - ./hypr.nix - ./vim.nix - ./qksh.nix - ]; - +{ pkgs, ... }: { home.username = "cat"; home.homeDirectory = "/home/cat"; home.stateVersion = "26.05"; xdg.configFile."fish/config.fish".force = true; - xdg.configFile."kitty/kitty.conf".force = true; xdg.configFile."btop/btop.conf".force = true; programs.fish = { @@ -32,45 +23,11 @@ }; interactiveShellInit = '' if status is-interactive - cat ~/.cache/wal/sequences - end - ''; - loginShellInit = '' - if test -z "$DISPLAY" -a (tty) = "/dev/tty1" - exec start-hyprland + cat ~/.cache/wal/sequences 2>/dev/null || true end ''; }; - programs.kitty = { - enable = true; - extraConfig = '' - include ~/.cache/wal/colors-kitty.conf - - shell fish - shell_integration enabled - - font_family JetBrainsMono Nerd Font - font_size 11 - - cursor_trail 3 - cursor_trail_decay 0.1 0.4 - cursor_shape beam - cursor_blink_interval 1 - shell_integration no-cursor - - confirm_os_window_close 0 - allow_remote_control yes - - background_opacity 1 - background_blur 1 - dynamic_background_opacity 1 - scrollbar_handle_opacity 0 - scrollbar_track_opacity 0 - scrollbar_track_hover_opacity 0 - ''; - }; - programs.btop = { enable = true; settings = { @@ -152,19 +109,5 @@ }; }; -home.pointerCursor = { - gtk.enable = true; - x11.enable = true; - package = pkgs.kdePackages.breeze; - name = "breeze_cursors"; - size = 16; -}; - -home.sessionVariables = { - XCURSOR_THEME = "breeze_cursors"; - XCURSOR_SIZE = "16"; - QT_CURSOR_SIZE = "16"; -}; - programs.home-manager.enable = true; } |
