21 lines
392 B
Nix
21 lines
392 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./programs/bash.nix
|
|
./programs/git.nix
|
|
];
|
|
|
|
home.file = {
|
|
".config/hypr".source = ./config/hypr;
|
|
".config/tmux".source = ./config/tmux;
|
|
".config/ghostty".source = ./config/ghostty;
|
|
".config/nvim".source = ./config/nvim;
|
|
};
|
|
|
|
home.username = "river";
|
|
home.homeDirectory = "/home/river";
|
|
|
|
home.stateVersion = "26.05";
|
|
}
|