seperate out home config

This commit is contained in:
Osman Faruk Bayram 2025-02-05 00:41:36 +03:00
parent 8c176c2643
commit 6cf1be302f
9 changed files with 129 additions and 127 deletions

21
home/home.nix Normal file
View file

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