formatting pass

aarch64
Zynh Ludwig 2024-02-26 00:23:21 -08:00
parent 64db2cecf5
commit 97a8146467
2 changed files with 21 additions and 15 deletions

View File

@ -6,7 +6,8 @@
{
imports =
[ # Include the results of the hardware scan.
[
# Include the results of the hardware scan.
./hardware-configuration.nix
];
@ -93,19 +94,21 @@
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
rustup
neovim
neovim
fish
zig
go
nil
wezterm
firefox
firefox
lazygit
ripgrep
nodejs_21
dotnet-sdk_8
unzip
nixpkgs-fmt
lua-language-server
stylua
];
};
@ -127,20 +130,20 @@
'';
};
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
neovim
curl
git
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
neovim
curl
git
];
# Some programs need SUID wrappers, can be configured further or are

View File

@ -5,7 +5,8 @@
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
[
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ];
@ -14,12 +15,14 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/fa4ed906-f26b-40ec-859c-81813151c33a";
{
device = "/dev/disk/by-uuid/fa4ed906-f26b-40ec-859c-81813151c33a";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/31B8-8850";
{
device = "/dev/disk/by-uuid/31B8-8850";
fsType = "vfat";
};