Compare commits

..

No commits in common. "34491dc303dde09061afb30447bccd1a3eeb0a1e" and "df06a58f5201303b74e93198f347281dd82b9d4d" have entirely different histories.

2 changed files with 5 additions and 10 deletions

View File

@ -1,3 +1,3 @@
# nixos-systems # nixos-systems
Configurations for my various systems using NixOS. Each system is organized by hostname. Configurations for my various systems using NixOS

View File

@ -51,9 +51,9 @@
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
# Configure keymap in X11 # Configure keymap in X11
services.xserver.xkb = { services.xserver = {
layout = "us"; layout = "us";
variant = "dvorak"; xkbVariant = "dvorak";
}; };
# Configure console keymap # Configure console keymap
@ -95,19 +95,14 @@
# Install firefox. # Install firefox.
programs.firefox.enable = true; programs.firefox.enable = true;
# Set neovim as the default editor
programs.neovim.enable = true;
programs.neovim.defaultEditor = true;
# 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; [
chezmoi
fish
git git
python3
neovim neovim
tmux tmux
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
]; ];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are