diff --git a/configuration.nix b/configuration.nix index d7e4be9..5026b04 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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 diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 2a04f41..3a59f36 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -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"; };