Files
nixos-blueprint/hosts/legion/programs.nix
2025-04-15 00:03:26 +03:00

20 lines
293 B
Nix

{
pkgs,
lib,
...
}: {
programs = {
fish.enable = true;
mosh.enable = true;
nh = {
enable = true;
flake = "/home/user/.config/nixos";
};
};
environment.systemPackages = with pkgs; [
(lib.hiPrio uutils-coreutils-noprefix)
helix
nushell
];
}