seperate out home config
This commit is contained in:
parent
8c176c2643
commit
6cf1be302f
9 changed files with 129 additions and 127 deletions
21
home/home.nix
Normal file
21
home/home.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue