Compare commits

..

No commits in common. "bc61238e787b2da1ce44e86efce49cdd3a44532d" and "357546359ed654b5ed63e11adab35f0b132748d8" have entirely different histories.

2 changed files with 13 additions and 18 deletions

View file

@ -25,7 +25,6 @@ in {
thunderbird thunderbird
libreoffice libreoffice
logseq logseq
kmymoney
# Security # Security
gnupg gnupg
keepassxc keepassxc

View file

@ -6,26 +6,24 @@ in {
nixos-hardware.nixosModules.apple-macbook-pro-8-1 nixos-hardware.nixosModules.apple-macbook-pro-8-1
]; ];
# Configure NixOS
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
# Boot Parameters
boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "firewire_ohci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "firewire_ohci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" "wl" ]; boot.kernelModules = [ "kvm-intel" "wl" ];
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ]; boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
# Filesystems fileSystems."/" =
fileSystems."/" = { { device = "/dev/disk/by-uuid/33872d2c-3008-47ad-a7cf-fed7b259dfb0";
device = "/dev/disk/by-uuid/33872d2c-3008-47ad-a7cf-fed7b259dfb0";
fsType = "ext4"; fsType = "ext4";
}; };
boot.initrd.luks.devices."luks-732125b8-36af-43ea-b684-db71b4c20406".device = "/dev/disk/by-uuid/732125b8-36af-43ea-b684-db71b4c20406"; boot.initrd.luks.devices."luks-732125b8-36af-43ea-b684-db71b4c20406".device = "/dev/disk/by-uuid/732125b8-36af-43ea-b684-db71b4c20406";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/3C84-DD6D"; fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/3C84-DD6D";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ]; options = [ "fmask=0077" "dmask=0077" ];
}; };
swapDevices = [ swapDevices = [
{ {
device = "/swapfile"; device = "/swapfile";
@ -33,10 +31,8 @@ in {
} }
]; ];
# Network
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# Hardware nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.bosto-touchpad.enable = true;
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }