Merge branch 'main' of gitlab.com:ahoneybun/nix-configs

This commit is contained in:
Aaron Honeycutt 2023-04-14 14:06:05 -06:00
commit 52382f8fc7
6 changed files with 107 additions and 10 deletions

View file

@ -12,7 +12,6 @@
# Latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [ "vfio-pci.ids=8086:9b41" "qxl" "bochs_drm"];
boot.loader = {
systemd-boot.enable = true;
@ -82,12 +81,8 @@
avahi
cargo
dmidecode
just
libcamera
lshw
quickemu
spice
spice-gtk
nix-index
toybox
unzip

View file

@ -16,10 +16,13 @@
# Office
google-chrome
libreoffice-fresh
vscode
# Work
virt-manager
vscode
quickemu
spice
spice-gtk
# Streaming
obs-studio

View file

@ -12,7 +12,7 @@
egl-wayland
glib
gtk4
just
lld
llvm
llvmPackages_15.llvm
libclang

View file

@ -1,7 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.buildPackages.nodejs-16_x
pkgs.buildPackages.nodePackages.npm
nativeBuildInputs = with pkgs; [
nodejs-16_x
nodePackages.npm
];
}

98
systems/vm.nix Normal file
View file

@ -0,0 +1,98 @@
{ config, pkgs, ... }:
{
# Import other configuration modules
# (hardware-configuration.nix is autogenerated upon installation)
# paths in nix expressions are always relative the file which defines them
imports =
[
./hardware-configuration.nix
# ./programs.nix
];
# Latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [ "vfio-pci.ids=8086:9b41" "qxl" "bochs_drm"];
boot.loader = {
systemd-boot.enable = true;
systemd-boot.consoleMode = "0";
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
nix.settings.extra-platforms = [ "aarch64-linux" ];
nix.settings.auto-optimise-store = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "America/Denver";
# Enter keyboard layout
services.xserver.layout = "us";
# Define user accounts
users.users.aaronh = {
description = "Aaron Honeycutt";
home = "/home/aaronh";
extraGroups = [ "wheel" "networkmanager" "adm"];
isNormalUser = true;
hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx.";
packages = with pkgs; [
neofetch
];
};
# Allow Unfree
nixpkgs.config.allowUnfree = true;
# Install some packages
environment.systemPackages =
with pkgs;
[
nix-index
toybox
unzip
wget
xz
];
# Enable/Disable hardware
## Turn off PulseAudio
hardware.pulseaudio.enable = false;
# Enable Pipewire
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
# Enable Bluetooth
hardware.bluetooth.enable = true;
services.printing.enable = true;
services.openssh.enable = true;
services.avahi = {
enable = true;
nssmdns = true;
openFirewall = true;
};
# System
system.stateVersion = "22.11";
system.autoUpgrade.enable = true;
}

View file

@ -10,5 +10,6 @@ in
{
environment.systemPackages = with pkgs; [
unstable.rustc
unstable.just
];
}