mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
18 lines
238 B
Nix
18 lines
238 B
Nix
{ currentSystemUser, ... }:
|
|
{
|
|
imports = [
|
|
./nvim
|
|
./tmux.nix
|
|
./fish.nix
|
|
./git.nix
|
|
./kitty.nix
|
|
./zoxide.nix
|
|
];
|
|
|
|
home.username = "${currentSystemUser}";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|