feat: init

This commit is contained in:
Nick 2024-10-06 15:25:05 -05:00
commit c19ea940bd
320 changed files with 23845 additions and 0 deletions

23
nixos/modules/environment.nix Executable file
View file

@ -0,0 +1,23 @@
{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";
};
};
}