1
0

Initial shared NixOS modules

This commit is contained in:
2025-06-23 17:44:56 -07:00
commit 1061e07deb
11 changed files with 464 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ ... }:
{
# Configure nano as a more user-friendly editor
environment.variables = {
EDITOR = "nano";
VISUAL = "nano";
};
}