2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2024-12-23 04:27:31 +01:00
nixos-config/hosts/sisko/home.nix

77 lines
1.4 KiB
Nix
Raw Normal View History

2024-11-30 23:36:53 +01:00
{ pkgs, lib, ... }:
{
imports = [
./../../home/base.nix
./../../home/alacritty.nix
];
home.packages = with pkgs; [
bc
catimg
chromium
dante
dig
element-desktop
hunspellDicts.en_US
hunspellDicts.nb_NO
jq
libreoffice
mpv
nixpkgs-2211.remmina
openssl
pwgen
2024-12-01 12:41:41 +01:00
tlclient
2024-11-30 23:36:53 +01:00
traceroute
virt-manager
w3m
2024-12-01 12:41:41 +01:00
(python311.withPackages (ps: with ps; [
2024-11-30 23:36:53 +01:00
numpy
pycryptodome
requests
]))
];
programs = {
aerc = {
enable = true;
2024-12-01 12:41:41 +01:00
package = pkgs.aerc;
2024-11-30 23:36:53 +01:00
};
alacritty.enable = true;
firefox.enable = true;
rbw = {
enable = true;
settings = {
base_url = "https://pw.feal.no";
email = "felix@albrigtsen.it";
pinentry = pkgs.pinentry-gnome3;
};
};
rofi = {
enable = true;
theme = "iggy";
};
zsh = {
shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
prezto.pmodules = [ "ssh" ];
};
neovim.plugins = with pkgs.vimPlugins; [ copilot-vim ];
};
xdg.mimeApps = {
enable = true;
defaultApplications = {
"text/html" = "firefox.desktop";
"x-scheme-handler/http" = "firefox.desktop";
"x-scheme-handler/https" = "firefox.desktop";
"x-scheme-handler/about" = "firefox.desktop";
"x-scheme-handler/unknown" = "firefox.desktop";
};
};
home.stateVersion = "24.11";
}