Files
nixos-blueprint/hosts/dunamis/programs.nix
unexplrd 4c5a461712 hosts/dunamis/programs.nix: add mosh
modules/home/desktop/niri/default.nix: change tab bar
modules/home/programs/terminal/wezterm.nix: fix keybinds
modules/nixos/desktop/niri.nix: auto-unlock gnome-keyring

Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-04-10 15:38:34 +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
];
}