37 lines
686 B
Nix
Executable File
37 lines
686 B
Nix
Executable File
{ 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;
|
|
}
|