Files
nixos-config/home/default.nix
2024-03-30 12:17:29 +01:00

39 lines
548 B
Nix

{ config, pkgs, ... }:
{
home = {
username = "elias";
homeDirectory = "/home/elias";
packages = with pkgs; [
# archives
unzip
zip
# misc
tree
which
# system tools
lm_sensors
arandr
pavucontrol
sshf
sshfss
obsidian
lean4
firefox
bitwarden
];
stateVersion = "23.11";
};
programs = { home-manager.enable = true; };
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [ "electron-25.9.0" ];
};
}