1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 15:03:37 +00:00
.dotfiles/nixos/home.nix
2024-12-09 15:19:40 -05:00

39 lines
1 KiB
Nix

{ pkgs, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
in
{
imports = [
"${home-manager}/nixos"
# "${plasma-manager}/modules"
];
home-manager.users.rae = {
home = {
stateVersion = "24.11";
sessionVariables = {
BROWSER = "firefox";
TERM = "kitty";
};
file = {
".background-image".source = ../assets/wallpapers/2kki_rainyapartments.png;
".twmrc".source = ../configs/twm;
".config/i3/config".source = ../configs/i3;
};
};
programs = {
git = {
enable = true;
userName = "roxwize";
userEmail = "rae@roxwize.xyz";
};
neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
vim-wakatime
];
};
};
};
}