defaults. programs. etc.

This commit is contained in:
Dustin Swan 2026-03-15 20:50:40 -06:00
parent 1f0244a5a1
commit 1fed7260bb
No known key found for this signature in database
GPG key ID: 30D46587E2100467
2 changed files with 14 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ modulesPath, ... }: {
{ pkgs, modulesPath, ... }: {
imports = [ (modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix") ];
@ -60,5 +60,17 @@
networking.firewall.allowedTCPPorts = [ 80 443 ];
environment.systemPackages = with pkgs; [
git
forgejo
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
system.stateVersion = "25.11";
}