add zsh and kitty. Basic structure
This commit is contained in:
Executable
+36
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user