dotfiles/home.nix

27 lines
569 B
Nix
Raw Normal View History

2024-03-11 21:59:50 +01:00
{ config, pkgs, ... }:
{
home.username = "svante";
home.homeDirectory = "/home/svante";
home.stateVersion = "23.11";
home.packages = [
pkgs.fortune
pkgs.htop
];
home.file = {
".config/fuzzel".source = dotfiles/fuzzel;
".config/hypr".source = dotfiles/hypr;
".config/kitty".source = dotfiles/kitty;
".config/nvim/lua/vanten".source = dotfiles/nvim;
".config/waybar".source = dotfiles/waybar;
2024-03-11 22:12:10 +01:00
"scripts".source = dotfiles/scripts;
2024-03-11 21:59:50 +01:00
".zshrc".source = dotfiles/zshrc;
};
home.sessionVariables = { };
programs.home-manager.enable = true;
}