23 lines
359 B
Nix
23 lines
359 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
home = {
|
||
|
stateVersion = "23.05";
|
||
|
username = "sara";
|
||
|
homeDirectory = "/home/sara";
|
||
|
packages = with pkgs; [
|
||
|
# Base
|
||
|
thefuck
|
||
|
];
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
# Home-manager configured program files
|
||
|
./neovim.nix
|
||
|
./hyfetch.nix
|
||
|
./zsh.nix
|
||
|
./git.nix
|
||
|
];
|
||
|
|
||
|
programs.home-manager.enable = true;
|
||
|
}
|