nixos-config/hosts/felixalbpc/home.nix

30 lines
525 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
{
imports = [
./../../home/base.nix
];
home.packages = with pkgs; [
aerc
element-desktop
openstackclient
remmina
2024-05-28 23:04:44 +02:00
python3
] ++ (with python3Packages; [
numpy
pycryptodome
requests
]);
programs = {
2023-12-25 13:31:43 +01:00
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
git.extraConfig.user.email = "felix.albrigtsen@ntnu.no";
alacritty.enable = true;
firefox.enable = true;
rofi.enable = true;
};
home.stateVersion = "24.05";
}