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>
20 lines
293 B
Nix
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
|
|
];
|
|
}
|