Directly calling zsh.nix

This commit is contained in:
2026-02-25 21:11:51 +01:00
parent 78aced51d6
commit 4a828ba3e5
+26 -27
View File
@@ -1,29 +1,28 @@
{ pkgs, user, ... } : { pkgs, user, ... }:
{ {
imports = [ imports = [
./apps/ai.nix ./apps/ai.nix
#./apps/default-apps.nix #./apps/default-apps.nix
./apps/theme.nix ./apps/theme.nix
./desktop/hypridle.nix ./desktop/hypridle.nix
./desktop/hyprland.nix ./desktop/hyprland.nix
./desktop/hyprexpo.nix ./desktop/hyprexpo.nix
./desktop/hyprlock.nix ./desktop/hyprlock.nix
./desktop/hyprscrolling.nix ./desktop/hyprscrolling.nix
./desktop/hyprshell.nix ./desktop/hyprshell.nix
./desktop/wallpaper.nix ./desktop/wallpaper.nix
./desktop/waybar.nix ./desktop/waybar.nix
./desktop/walker.nix ./desktop/walker.nix
./dev/dev.nix ./dev/dev.nix
./dev/shells.nix ./dev/shells.nix
./dev/starship.nix ./dev/starship.nix
./dev/emacs ./dev/zsh.nix
]; ./dev/emacs
];
home.username = "${user.username}"; home.username = "${user.username}";
home.homeDirectory = pkgs.lib.mkDefault "/home/${user.username}"; home.homeDirectory = pkgs.lib.mkDefault "/home/${user.username}";
home.stateVersion = user.stateVersion; home.stateVersion = user.stateVersion;
programs.home-manager.enable = true;
}
programs.home-manager.enable = true;
}