parent
7734fbcd64
commit
f342ac6f9d
@ -0,0 +1,5 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ ];
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
services.blueman.enable = true;
|
||||
|
||||
services.tailscale.enable = true;
|
||||
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
enableCryptodisk = true;
|
||||
device = "nodev";
|
||||
useOSProber = true;
|
||||
};
|
||||
|
||||
boot.initrd.luks.devices = {
|
||||
crypted = {
|
||||
device = "/dev/disk/by-uuid/24bc9d4e-fc76-4b70-ba95-8533c416a9d0";
|
||||
preLVM = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Support mounting NTFS partitions
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
|
||||
# audio controls and polybar module don't work on pipewire
|
||||
hardware.pulseaudio = {
|
||||
enable = true;
|
||||
support32Bit = true;
|
||||
};
|
||||
services.pipewire.enable = lib.mkForce false;
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
(import ./apps.nix)
|
||||
(import ../thinkpads/i3.nix)
|
||||
(import ../thinkpads/polybar.nix)
|
||||
];
|
||||
}
|
Loading…
Reference in new issue