changes to home

This commit is contained in:
ooks-io 2023-07-31 14:47:58 +12:00
parent aec2a2df16
commit 411e333252
40 changed files with 256 additions and 2928 deletions

View file

@ -0,0 +1,38 @@
{ pkgs, ... }:
{
imports = [
./mako.nix
./kitty.nix
./firefox.nix
./zathura.nix
./gammastep.nix
];
xdg.mimeApps.enable = true;
home.packages = with pkgs; [
grim
mkv
gtk3
pulseaudio
slurp
wf-recorder
wl-clipboard
wl-mirror
wl-mirror-pick
xdg-utils
ydotool
];
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
QT_QPA_PLATFORM = "wayland";
LIBSEAT_BACKEND = "logind";
EDITOR = "nvim";
BROWSER = "firefox";
};
}