Consolidate some settings, move others.

This commit is contained in:
Joseph Hanson 2024-02-10 12:34:59 -06:00
parent 47cff33de9
commit f0e37c6ee2

View file

@ -11,8 +11,22 @@
]; ];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot = {
boot.loader.efi.canTouchEfiVariables = true; loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
initrd = {
supportedFilesystems = [ "nfs" ];
kernelModules = [ "nfs" ];
};
};
# fileSystems."/mnt/xen-backups" = {
# device = "10.1.1.13:/eru/xen-backups";
# fsType = "nfs";
# };
programs.fish.enable = true; programs.fish.enable = true;
@ -95,11 +109,11 @@
packages = with pkgs; [ packages = with pkgs; [
firefox firefox
thunderbird thunderbird
git
vscode vscode
vivaldi vivaldi
vivaldi-ffmpeg-codecs vivaldi-ffmpeg-codecs
termius termius
talhelper.packages."${pkgs.system}".default
]; ];
}; };
environment.variables.EDITOR = "vim"; environment.variables.EDITOR = "vim";
@ -111,7 +125,7 @@
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
talhelper.packages."${pkgs.system}".default git
wget wget
curl curl
vim vim
@ -123,6 +137,7 @@
ansible ansible
gparted gparted
lens lens
nfs-utils
]; ];
services.tailscale.enable = true; services.tailscale.enable = true;