flake/home/home.nix
2025-02-09 22:09:34 +03:00

21 lines
305 B
Nix

{
config,
pkgs,
...
}: {
imports = [
./tmux
./git.nix
./ssh.nix
./bash.nix
];
home.username = "osbm";
home.homeDirectory = "/home/osbm";
home.packages = [
# dont install packages here, just use normal nixpkgs
];
home.stateVersion = config.system.stateVersion;
}