Modularizing the system

This commit is contained in:
2024-09-04 07:50:50 +02:00
parent f8c3653e49
commit fb35600660
8 changed files with 65 additions and 33 deletions

16
home/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
imports = [
./tmux.nix
./fish.nix
./git.nix
./kitty.nix
];
home.username = "r3ddy";
programs.home-manager.enable = true;
programs.zoxide.enable = true;
home.stateVersion = "24.11";
}