Update terminal environment
This commit is contained in:
@@ -18,6 +18,17 @@ in
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.extraModulePackages = with config.boot.kernelPackages; [
|
||||
v4l2loopback
|
||||
];
|
||||
|
||||
boot.kernelModules = [ "v4l2loopback" ];
|
||||
boot.extraModprobeConfig = ''
|
||||
options v4l2loopback video_nr=10 card_label=snapcam exclusive_caps=1
|
||||
'';
|
||||
|
||||
|
||||
|
||||
networking.hostName = profile.hostname; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
@@ -91,6 +102,8 @@ in
|
||||
libGL
|
||||
xorg.libX11
|
||||
appimage-run
|
||||
libgcrypt
|
||||
libxcrypt
|
||||
];
|
||||
};
|
||||
|
||||
@@ -121,7 +134,6 @@ in
|
||||
services.openssh.enable = true;
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
||||
@@ -6,6 +6,7 @@ in
|
||||
|
||||
imports = [
|
||||
./editor.nix
|
||||
./tex-environment.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
||||
11
terminal-environment/tex-environment.nix
Normal file
11
terminal-environment/tex-environment.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ config, pkgs, ... }:
|
||||
let
|
||||
profile = import ../profile.nix;
|
||||
in
|
||||
{
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
texliveMedium
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user