mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
23 lines
449 B
Nix
Executable file
23 lines
449 B
Nix
Executable file
{pkgs, ...}: {
|
|
environment = {
|
|
# enableAllTerminfo = true;
|
|
systemPackages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
git
|
|
pijul
|
|
sshfs
|
|
tomb
|
|
virt-manager
|
|
;
|
|
};
|
|
variables = {
|
|
VIDEO_PLAYER = "vlc";
|
|
EDITOR = "nano";
|
|
WLR_NO_HARDWARE_CURSORS = "1";
|
|
WLR_DRM_NO_ATOMIC = "1";
|
|
NIXPKGS_ALLOW_INSECURE = "1";
|
|
NIXPKGS_ALLOW_UNFREE = "1";
|
|
};
|
|
};
|
|
}
|