dotfiles/boxes/wsl/configuration.nix

95 lines
2.6 KiB
Nix
Raw Normal View History

2024-05-27 12:34:10 -04:00
# Edit this configuration file to define what should be installed onconfigurati
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
# { config, lib, pkgs, inputs, ... }:
{ config, lib, pkgs, inputs, ... }:
{
2024-05-27 14:09:56 -04:00
imports = [
2024-11-26 17:01:58 -05:00
../../common/users/meyer-wsl
../../common/systemModules/wsl.nix
../../common/systemModules/kernel.nix
../../common/systemModules/crypt.nix
../../common/systemModules/stylix.nix
2024-05-27 14:09:56 -04:00
];
2024-05-27 12:34:10 -04:00
2024-11-26 17:01:58 -05:00
hardware.i2c.enable = true;
2024-05-27 12:34:10 -04:00
2024-11-26 17:01:58 -05:00
networking.hostName = "arm-laptop-evo4b5"; # Define your hostname.
2024-05-27 12:34:10 -04:00
2024-11-26 17:01:58 -05:00
nixpkgs.config.allowUnfree = true;
2024-05-27 12:34:10 -04:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2024-11-26 17:01:58 -05:00
# Set your time zone.
time.timeZone = "America/New_York";
2024-05-27 12:34:10 -04:00
programs.zsh.enable = true;
environment.systemPackages = with pkgs; [
ddcutil
i2c-tools
2024-11-26 17:01:58 -05:00
fuse
2024-05-27 12:34:10 -04:00
neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
curl
wget
ripgrep
tldr
libnotify
file
];
#LD fix
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
2024-11-26 17:01:58 -05:00
libGL
alsa-lib
expat
mesa
libxkbcommon
xorg.libxcb
xorg.libXrandr
xorg.libXfixes
xorg.libXext
xorg.libXdamage
xorg.libXcomposite
xorg.libX11
cairo
pango
gtk3
libdrm
cups
at-spi2-atk
lzo
dbus
nspr
nss
glib
curlWithGnuTls
fuse
fuse3
mimalloc
2024-05-27 12:34:10 -04:00
];
programs.ssh.startAgent = true;
# programs.ssh.askPassword = pkgs.lib.mkForce "${pkgs.ksshaskpass.out}/bin/ksshaskpass";
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "23.11"; # Did you read the comment?
}