From a20d8d2e894360320c525d82be8ab0081777c3d7 Mon Sep 17 00:00:00 2001 From: Krosh Date: Sun, 16 Nov 2025 02:39:10 +0300 Subject: [PATCH] some upd --- home-manager/home.nix | 2 ++ home-manager/modules/hypr/hypr.nix | 3 +-- home-manager/modules/tmux.nix | 15 ++++++++++++++- nixos/custom.nix | 5 ++++- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index a7218d7..24ce56f 100755 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -10,6 +10,8 @@ ./modules/git.nix ./modules/programs.nix ./modules/custom/config.nix + ./modules/hypr/hypr.nix + ./modules/tmux.nix ]; home.pointerCursor = let diff --git a/home-manager/modules/hypr/hypr.nix b/home-manager/modules/hypr/hypr.nix index 4ef2617..fc4c7e7 100644 --- a/home-manager/modules/hypr/hypr.nix +++ b/home-manager/modules/hypr/hypr.nix @@ -1,7 +1,6 @@ { config, pkgs, ... }: { - home.packages = with pkgs; [ hyprland ]; - + programs.waybar = { enable = true; }; } diff --git a/home-manager/modules/tmux.nix b/home-manager/modules/tmux.nix index ffcd441..c1ec543 100644 --- a/home-manager/modules/tmux.nix +++ b/home-manager/modules/tmux.nix @@ -1 +1,14 @@ -{ } +{ config, pkgs, ... }: + +{ + + programs.tmux = { + enable = true; + clock24 = true; + keyMode = "vi"; + historyLimit = 5000; + mouse = true; + newSession = true; + shell = "${pkgs.zsh}/bin/zsh"; + }; +} diff --git a/nixos/custom.nix b/nixos/custom.nix index 22bc418..8188d46 100644 --- a/nixos/custom.nix +++ b/nixos/custom.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { nix.settings.experimental-features = [ "nix-command" "flakes" ]; @@ -77,6 +77,9 @@ }; }; + fonts.packages = builtins.filter lib.attrsets.isDerivation + (builtins.attrValues pkgs.nerd-fonts); + programs.zsh.enable = true; boot = {