54 lines
1006 B
Nix
54 lines
1006 B
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
|
|
arandr
|
|
|
|
# noch ned conf
|
|
#betterbird
|
|
#bitwarden
|
|
# dropbox
|
|
firefox
|
|
#signal-desktop
|
|
#telegram-desktop
|
|
# zathura
|
|
];
|
|
|
|
# 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;
|
|
}
|