nixos-config/hosts/edison/home.nix

31 lines
512 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
nix-index
2024-05-28 23:04:44 +02:00
unstable.snicat
python3
] ++ (with python3Packages; [
beautifulsoup4
numpy
pillow
pwntools
pycryptodome
requests
]);
imports = [
./../../home/base.nix
2024-04-12 21:58:34 +02:00
./email.nix
];
programs = {
2023-12-25 13:31:43 +01:00
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
alacritty.enable = true;
firefox.enable = true;
rofi.enable = true;
2023-12-25 13:31:43 +01:00
};
home.stateVersion = "23.05";
}