This commit is contained in:
unexplrd
2025-02-19 21:15:09 +02:00
parent 267b293b0b
commit 2380f7be67
5 changed files with 60 additions and 3 deletions

View File

@ -10,6 +10,7 @@
clean.extraArgs = "--keep-since 7d --keep 3";
flake = "/home/user/.config/nixos";
};
programs.fish.enable = true;
environment.systemPackages = with pkgs; [
helix
nushell

View File

@ -4,7 +4,7 @@
user = {
isNormalUser = true;
extraGroups = ["wheel" "video" "libvirtd" "dialout"];
shell = pkgs.nushell;
shell = pkgs.fish;
};
# work = {
# isNormalUser = true;

View File

@ -1,6 +1,7 @@
{pkgs, ...}: {
shell = {
nushell.enable = true;
fish.enable = true;
nushell.enable = false;
oh-my-posh.enable = true;
};