1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

59 lines
995 B
Nix

{ pkgs, lib, ... }:
{
imports =
[
./polybar.nix
./dunst.nix
./zsh.nix
./nextcloud.nix
./autorandr.nix
./git.nix
./gpg.nix
];
home.packages = [
pkgs.htop
pkgs.pavucontrol
pkgs.jabref
pkgs.jitsi-meet-electron
pkgs.skypeforlinux
pkgs.zoom-us
pkgs.element-desktop
pkgs.signal-desktop
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"zoom"
"skypeforlinux"
];
services = {
udiskie = {
enable = true;
automount = true;
notify = true;
tray = "auto";
};
blueman-applet.enable = true;
network-manager-applet.enable = true ;
gnome-keyring = {
enable = true;
components = [ "pkcs11" "secrets" "ssh" ];
};
};
xdg = {
enable = true;
};
home.file.".background-image".source = ./common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
programs.home-manager = {
enable = true;
};
}