mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
17 lines
226 B
Nix
17 lines
226 B
Nix
{ 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";
|
|
}
|