1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-13 16:03:25 +00:00
.dotfiles/nixos/home.nix
2024-11-30 22:44:05 -05:00

37 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";
programs = {
git = {
enable = true;
userName = "roxwize";
userEmail = "rae@roxwize.xyz";
};
# plasma = {
# enable = true;
# panels = [
# {
# location = "top";
# height = 32;
# widgets = [
# "org.kde.plasma.kickoff"
# "org.kde.plasma.icontasks"
# "org.kde.plasma.marginsseparator"
# "org.kde.plasma.digitalclock"
# ];
# }
# ];
# };
};
};
}