This commit is contained in:
2025-11-16 02:39:10 +03:00
parent 7acc6b352f
commit a20d8d2e89
4 changed files with 21 additions and 4 deletions
+2
View File
@@ -10,6 +10,8 @@
./modules/git.nix
./modules/programs.nix
./modules/custom/config.nix
./modules/hypr/hypr.nix
./modules/tmux.nix
];
home.pointerCursor = let
+1 -2
View File
@@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ hyprland ];
programs.waybar = { enable = true; };
}
+14 -1
View File
@@ -1 +1,14 @@
{ }
{ config, pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
keyMode = "vi";
historyLimit = 5000;
mouse = true;
newSession = true;
shell = "${pkgs.zsh}/bin/zsh";
};
}
+4 -1
View File
@@ -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 = {