mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 14:06:10 +01:00
39 lines
479 B
Nix
39 lines
479 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./picom.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
rofi
|
|
dmenu
|
|
st
|
|
dunst
|
|
xss-lock
|
|
flameshot
|
|
xdg-desktop-portal-gtk
|
|
xorg.xrdb
|
|
xorg.xrandr
|
|
xorg.xset
|
|
xorg.xsetroot
|
|
xorg.setxkbmap
|
|
xclip
|
|
gnome.gnome-keyring
|
|
feh
|
|
gruvbox-dark-gtk
|
|
kde-gruvbox
|
|
gruvbox-dark-icons-gtk
|
|
alsaUtils
|
|
];
|
|
|
|
home.file = {
|
|
".xinitrc" = {
|
|
source = ./.xinitrc;
|
|
};
|
|
};
|
|
}
|