Current working changes to configuration

This commit is contained in:
Alex Selimov 2026-08-27 23:56:32 -04:00
commit 0a24ffcef1
66 changed files with 5312 additions and 0 deletions

13
home/root/home.nix Normal file
View file

@ -0,0 +1,13 @@
{config, pkgs, ... }:
{
imports = [
../shell/shell.nix
../neovim/neovim.nix
];
home.username = "root";
home.homeDirectory = "/root";
home.stateVersion = "26.05";
programs.home-manager.enable = true;
}