mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 08:50:32 +01:00
zsh default shell
This commit is contained in:
parent
e0f3980099
commit
d8456a38b7
|
@ -34,9 +34,12 @@
|
||||||
sops
|
sops
|
||||||
tldr
|
tldr
|
||||||
screen
|
screen
|
||||||
|
zsh
|
||||||
inputs.compose2nix.packages.${pkgs.system}.default
|
inputs.compose2nix.packages.${pkgs.system}.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
programs.nix-ld = {
|
programs.nix-ld = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.nix-ld-rs;
|
package = pkgs.nix-ld-rs;
|
||||||
|
|
|
@ -164,8 +164,8 @@
|
||||||
users.users.xqtc = {
|
users.users.xqtc = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = ["wheel" "sudo" "docker" "adbusers"]; # Enable ‘sudo’ for the user.
|
extraGroups = ["wheel" "sudo" "docker" "adbusers"]; # Enable ‘sudo’ for the user.
|
||||||
packages = with pkgs; [wezterm nushell];
|
packages = with pkgs; [wezterm nushell zsh];
|
||||||
shell = pkgs.nushell;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
|
|
|
@ -127,7 +127,7 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = ["wheel" "docker" "libvirtd" "adbusers"]; # Enable ‘sudo’ for the user.
|
extraGroups = ["wheel" "docker" "libvirtd" "adbusers"]; # Enable ‘sudo’ for the user.
|
||||||
packages = with pkgs; [nushell];
|
packages = with pkgs; [nushell];
|
||||||
shell = pkgs.nushell;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
|
|
Loading…
Reference in a new issue