nix in vscode and reformatting files
This commit is contained in:
parent
e1ac2a9a09
commit
361d0c8df8
6 changed files with 18 additions and 13 deletions
|
|
@ -17,7 +17,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
boot.initrd.kernelModules = ["amdgpu"];
|
||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||
|
||||
services.hardware.bolt.enable = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ];
|
||||
|
|
@ -14,14 +15,16 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/9acc939a-f9d8-4e3b-a3b2-a90752de8ce7";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/9acc939a-f9d8-4e3b-a3b2-a90752de8ce7";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
boot.initrd.luks.devices."luks-38517f01-1bef-4603-bcfe-8c66124dc32a".device = "/dev/disk/by-uuid/38517f01-1bef-4603-bcfe-8c66124dc32a";
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/F0FA-6F3D";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/F0FA-6F3D";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
|
|
|
|||
1
home.nix
1
home.nix
|
|
@ -47,6 +47,7 @@ in
|
|||
signal-desktop
|
||||
redshift
|
||||
nextcloud-client
|
||||
nixpkgs-fmt
|
||||
];
|
||||
|
||||
# dotfiles
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "CDaut";
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
extensions = with pkgs.vscode-extensions; [
|
||||
bbenoist.nix
|
||||
james-yu.latex-workshop
|
||||
jnoortheen.nix-ide
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue