nix-home/home/X11/packages.nix
Natsu Kagami 466f5f1e90 Basic configuration for nki-home
nki-home tinc working

Don't route tinc through vpn

Don't do it lol

Integrate home-manager

Merge nki-home/flake into main flake

Add MacOS clipboard compat

Make VPN input a secret
2021-10-28 23:53:29 -04:00

39 lines
917 B
Nix

{ pkgs, config, lib, ... }:
let
# Override nss to open links in Firefox (https://github.com/NixOS/nixpkgs/issues/78961)
discordPkg = pkgs.unstable.discord.override { nss = pkgs.unstable.nss; };
in
{
imports = [ ./alacritty.nix ./i3.nix ];
home.packages = (with pkgs; [
## GUI stuff
gnome.cheese # Webcam check
evince # PDF reader
gparted
vscode
feh
deluge # Torrent client
mailspring
discordPkg
pavucontrol # PulseAudio control panel
# CLI stuff
xsel # Clipboard management
dex # .desktop file management, startup
sct # Display color temperature
]);
# Gnome-keyring
services.gnome-keyring.enable = true;
# Picom: X Compositor
services.picom = {
enable = true;
blur = true;
fade = true;
fadeDelta = 3;
shadow = true;
};
}