update before namechange
This commit is contained in:
parent
85244cb59f
commit
afd286a9f0
1 changed files with 10 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue