truly the nix pad rabbit hole

This commit is contained in:
2025-12-30 07:30:07 +02:00
parent adddfdd16d
commit 89a92e0fd9
5 changed files with 725 additions and 83 deletions

View File

@@ -98,6 +98,7 @@
enableCompletion = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
vi-mode.enable = true;
shellAliases = {
ll = "ls -l";

View File

@@ -1,33 +0,0 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/375deb8e-2972-45da-b166-9c88c5a48423";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/D618-6B9C";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/6b5fca90-220f-47e6-8c71-8e26ae9c9e0f"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}