nix/home.nix
Tristan Druyen e72007409d
Various small things
Signed-off-by: Tristan Druyen <tristan@vault81.de>
2023-09-19 03:13:48 +02:00

58 lines
1 KiB
Nix

{nix-doom-emacs-module, ...}: {
home-manager.users.tristand = {pkgs, ...}: {
imports = [
nix-doom-emacs-module
];
nix = {
settings.experimental-features = ["nix-command" "flakes"];
};
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
};
};
programs.doom-emacs = {
enable = true;
doomPrivateDir = ./doom.d;
};
programs.fish.enable = true;
programs.git = {
enable = true;
userName = "Tristan Druyen";
userEmail = "tristan@vault81.de";
aliases = {
ci = "commit";
co = "checkout";
s = "status";
};
};
services.emacs = {
enable = true;
};
home.packages = with pkgs; [
atool
alacritty
bitwarden
brave
firefox
jellyfin-media-player
neofetch
kate
rust-motd
signal-desktop
statix
tailscale
thunderbird
];
home.stateVersion = "23.05";
};
}