Let's see if this makes formatting with nix work and not wipe a file in helix
This commit is contained in:
parent
ee2bfcf24f
commit
afadb4eabe
|
@ -1,17 +1,21 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
config,
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
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.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
|
||||||
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
boot.initrd.kernelModules = ["dm-snapshot"];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = ["kvm-intel"];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [];
|
||||||
|
|
||||||
#fileSystems."/" =
|
#fileSystems."/" =
|
||||||
# { device = "UUID=65956905-b7a5-4573-81fe-622c42cabdf5";
|
# { device = "UUID=65956905-b7a5-4573-81fe-622c42cabdf5";
|
||||||
|
|
|
@ -41,12 +41,6 @@
|
||||||
tldr
|
tldr
|
||||||
|
|
||||||
# System libraries
|
# System libraries
|
||||||
|
|
||||||
# language servers and debuggers for helix
|
|
||||||
typst-lsp
|
|
||||||
rust-analyzer
|
|
||||||
rocmPackages.llvm.lldb
|
|
||||||
nil
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# fonts.packages = with pkgs; [
|
# fonts.packages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue