This commit is contained in:
nora 2023-09-19 19:12:49 +02:00
parent 24f8eae52f
commit 6d9c7e2da4
5 changed files with 29 additions and 25 deletions

View file

@ -1,18 +1,19 @@
{pkgs, ...}: with pkgs; [ { pkgs, ... }: with pkgs; [
bacon bacon
bat bat
cargo-expand cargo-expand
cargo-nextest cargo-nextest
fzf fzf
gcc gcc
gh gh
git-absorb git-absorb
git-crypt git-crypt
htop htop
hyperfine hyperfine
inferno inferno
python3 python3
ripgrep ripgrep
rustup-toolchain-install-master rustup-toolchain-install-master
samply samply
p7zip
] ]

View file

@ -44,6 +44,7 @@
ms-azuretools.vscode-docker ms-azuretools.vscode-docker
bmalehorn.vscode-fish bmalehorn.vscode-fish
nvarner.typst-lsp nvarner.typst-lsp
github.vscode-github-actions
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
{ {
publisher = "dtsvet"; publisher = "dtsvet";

View file

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
@ -14,18 +15,19 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/32d0dca2-de5c-4512-8be3-ab7a75ac4a20"; {
device = "/dev/disk/by-uuid/32d0dca2-de5c-4512-8be3-ab7a75ac4a20";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot/efi" = fileSystems."/boot/efi" =
{ device = "/dev/disk/by-uuid/2027-FC69"; {
device = "/dev/disk/by-uuid/2027-FC69";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/7052ef54-be53-48bf-8b3e-9d24d5f34d5f"; } [{ device = "/dev/disk/by-uuid/7052ef54-be53-48bf-8b3e-9d24d5f34d5f"; }];
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's