flake/home/home.nix
2025-02-18 22:35:45 +03:00

19 lines
324 B
Nix

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