1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-21 11:24:15 +00:00
.dotfiles/nixos/home.nix

40 lines
1 KiB
Nix
Raw Normal View History

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