add zsh and kitty. Basic structure

This commit is contained in:
2025-11-14 01:08:32 +03:00
parent fe3ff1f1cb
commit 737507ced7
10 changed files with 2168 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
amnezia-vpn
telegram-desktop
git
hyprlock
vscode
# gnomeExtensions.paperwm
nixfmt
];
imports = [
./modules/zsh/zsh.nix
./modules/kitty.nix
];
# dconf = {
# enable = true;
# settings = {
# "org/gnome/shell" = {
# enabled-extensions = [
# "paperwm@paperwm.github.com"
# ];
# };
# "org/gnome/desktop/interface".show-battery-percentage = true;
# };
# };
home.username = "krosh";
home.homeDirectory = "/home/krosh";
home.stateVersion = "25.05";
programs.home-manager.enable = true;
}