toughbook changes

This commit is contained in:
alyx 2025-07-03 03:54:26 +01:00
parent f6e7398e09
commit 95ad0c1b68
No known key found for this signature in database
3 changed files with 12 additions and 2 deletions

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, inputs, ... }:
{
imports =
@ -39,7 +39,12 @@
};
boot.supportedFilesystems = ["exfat" "ntfs" "xfs"];
boot.loader.systemd-boot.enable = true;
boot.loader.limine.enable = true;
boot.loader.limine.style.wallpapers = [];
boot.loader.limine.additionalFiles = {
"efi/memtest86.efi" = "${pkgs.memtest86-efi}/BOOTX64.efi";
"efi/shell.efi" = "${pkgs.edk2-uefi-shell}/shell.efi";
};
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.systemd.enable = true;
boot.loader.efi.efiSysMountPoint = "/boot/";
@ -152,6 +157,8 @@
jack.enable = true;
};
hardware.alsa.enablePersistence = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.alyx = {
isNormalUser = true;
@ -174,6 +181,7 @@
keepassxc
pulseaudio
winetricks
inputs.niri.packages.${pkgs.stdenv.hostPlatform.system}.xwayland-satellite-stable
p7zip
cabextract
unzip

View file

@ -5,5 +5,6 @@
../ssh.nix
../substituters.nix
../fonts.nix
../greetd.nix
];
}

View file

@ -130,6 +130,7 @@
};
nixosConfigurations."hassie" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./base/hassie
home-manager.nixosModules.home-manager {