mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
fmt + 7z
This commit is contained in:
parent
24f8eae52f
commit
6d9c7e2da4
5 changed files with 29 additions and 25 deletions
|
|
@ -1,18 +1,19 @@
|
|||
{pkgs, ...}: with pkgs; [
|
||||
bacon
|
||||
bat
|
||||
cargo-expand
|
||||
cargo-nextest
|
||||
fzf
|
||||
gcc
|
||||
gh
|
||||
git-absorb
|
||||
git-crypt
|
||||
htop
|
||||
hyperfine
|
||||
inferno
|
||||
python3
|
||||
ripgrep
|
||||
rustup-toolchain-install-master
|
||||
samply
|
||||
]
|
||||
{ pkgs, ... }: with pkgs; [
|
||||
bacon
|
||||
bat
|
||||
cargo-expand
|
||||
cargo-nextest
|
||||
fzf
|
||||
gcc
|
||||
gh
|
||||
git-absorb
|
||||
git-crypt
|
||||
htop
|
||||
hyperfine
|
||||
inferno
|
||||
python3
|
||||
ripgrep
|
||||
rustup-toolchain-install-master
|
||||
samply
|
||||
p7zip
|
||||
]
|
||||
|
|
|
|||
|
|
@ -23,4 +23,4 @@
|
|||
|
||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||
home.stateVersion = "22.11";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,4 +31,4 @@
|
|||
username = "nilsh";
|
||||
homeDirectory = "/home/nilsh";
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@
|
|||
ms-azuretools.vscode-docker
|
||||
bmalehorn.vscode-fish
|
||||
nvarner.typst-lsp
|
||||
github.vscode-github-actions
|
||||
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
{
|
||||
publisher = "dtsvet";
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
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" ];
|
||||
|
|
@ -14,18 +15,19 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/32d0dca2-de5c-4512-8be3-ab7a75ac4a20";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/32d0dca2-de5c-4512-8be3-ab7a75ac4a20";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot/efi" =
|
||||
{ device = "/dev/disk/by-uuid/2027-FC69";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/2027-FC69";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
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
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue