Nixos-Configuration/modules/nixos/default.nix
Jermeiah S b24fa7ce40
Some checks failed
/ check (push) Successful in 1m48s
/ deploy (push) Failing after 2m21s
feature: neovim on and tmux on all systems [deploy]
2025-07-01 23:06:44 -04:00

13 lines
239 B
Nix

# This is your nixos configuration.
# For home configuration, see /modules/home/*
{ flake, pkgs, ... }:
{
imports = [
flake.inputs.self.nixosModules.common
];
environment.systemPackages = with pkgs; [
tmux
neovim
];
}