toughbook changes
This commit is contained in:
parent
f6e7398e09
commit
95ad0c1b68
3 changed files with 12 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
|
|
@ -39,7 +39,12 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.supportedFilesystems = ["exfat" "ntfs" "xfs"];
|
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.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.initrd.systemd.enable = true;
|
boot.initrd.systemd.enable = true;
|
||||||
boot.loader.efi.efiSysMountPoint = "/boot/";
|
boot.loader.efi.efiSysMountPoint = "/boot/";
|
||||||
|
|
@ -152,6 +157,8 @@
|
||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hardware.alsa.enablePersistence = true;
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.alyx = {
|
users.users.alyx = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
|
@ -174,6 +181,7 @@
|
||||||
keepassxc
|
keepassxc
|
||||||
pulseaudio
|
pulseaudio
|
||||||
winetricks
|
winetricks
|
||||||
|
inputs.niri.packages.${pkgs.stdenv.hostPlatform.system}.xwayland-satellite-stable
|
||||||
p7zip
|
p7zip
|
||||||
cabextract
|
cabextract
|
||||||
unzip
|
unzip
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,6 @@
|
||||||
../ssh.nix
|
../ssh.nix
|
||||||
../substituters.nix
|
../substituters.nix
|
||||||
../fonts.nix
|
../fonts.nix
|
||||||
|
../greetd.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -130,6 +130,7 @@
|
||||||
};
|
};
|
||||||
nixosConfigurations."hassie" = nixpkgs.lib.nixosSystem {
|
nixosConfigurations."hassie" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
./base/hassie
|
./base/hassie
|
||||||
home-manager.nixosModules.home-manager {
|
home-manager.nixosModules.home-manager {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue