update before namechange

This commit is contained in:
Lyn 2024-01-24 12:12:44 +01:00
parent c6a0559a37
commit ae00b46fa9

View file

@ -10,9 +10,15 @@
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
# Enable Flakes and the new command-line tool
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Set default editor to vim
environment.variables.EDITOR = "vim";
# Use the GRUB 2 boot loader. # Use the GRUB 2 boot loader.
boot.loader.grub.enable = true; #boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda"; #boot.loader.grub.device = "/dev/sda";
networking.hostName = "gitea"; # Define your hostname. networking.hostName = "gitea"; # Define your hostname.
# Set your time zone. # Set your time zone.
@ -45,8 +51,10 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git
vim vim
wget wget
curl
]; ];
# Create folders # Create folders