Files
nixos-config/home/default.nix
2024-02-29 13:20:13 +01:00

59 lines
1.0 KiB
Nix

{ config, pkgs, ... }:
{
imports = [
./programs
./services
];
home = {
username = "elias";
homeDirectory = "/home/elias";
packages = with pkgs; [
# archives
unzip
zip
# misc
tree
which
# system tools
lm_sensors
# extras
openssh
betterbird
bitwarden
# dropbox
firefox
signal-desktop
telegram-desktop
xfce.thunar
# zathura
xfce.xfconf
];
# environment.shells = [ pkgs.zsh ];
# environment.variables.EDITOR = "nvim";
# environment.pathsToLink = [ "/share/zsh" ];
stateVersion = "23.11";
};
programs = {
home-manager.enable = true;
# thunar.enable = true;
# xfconf.enable = true;
# thunar.plugins = with pkgs.xfce; [
# thunar-archive-plugin
# thunar-volman
# ];
};
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [ "electron-25.9.0" ];
};
# services.gvfs.enable = true;
# services.tumbler.enable = true;
}