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

35 lines
895 B
Nix
Raw Normal View History

2024-12-01 03:11:40 +00: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-12-01 03:44:05 +00:00
# "${plasma-manager}/modules"
2024-12-01 03:11:40 +00:00
];
home-manager.users.rae = {
2024-12-01 04:08:16 +00:00
home = {
stateVersion = "24.11";
2024-12-01 16:57:18 +00:00
sessionVariables = {
BROWSER = "firefox";
EDITOR = "hx";
TERM = "kitty";
};
2024-12-01 04:08:16 +00:00
file = {
".background-image".source = ../assets/wallpapers/bleh.png;
2024-12-01 16:57:18 +00:00
".twmrc".source = ../configs/twm;
".config/i3/config".source = ../configs/i3;
2024-12-01 04:08:16 +00:00
};
};
2024-12-01 03:11:40 +00:00
programs = {
git = {
enable = true;
userName = "roxwize";
userEmail = "rae@roxwize.xyz";
};
};
};
2024-12-01 03:44:05 +00:00
}