Compare commits
No commits in common. "34491dc303dde09061afb30447bccd1a3eeb0a1e" and "df06a58f5201303b74e93198f347281dd82b9d4d" have entirely different histories.
34491dc303
...
df06a58f52
|
@ -1,3 +1,3 @@
|
|||
# nixos-systems
|
||||
|
||||
Configurations for my various systems using NixOS. Each system is organized by hostname.
|
||||
Configurations for my various systems using NixOS
|
|
@ -51,9 +51,9 @@
|
|||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver.xkb = {
|
||||
services.xserver = {
|
||||
layout = "us";
|
||||
variant = "dvorak";
|
||||
xkbVariant = "dvorak";
|
||||
};
|
||||
|
||||
# Configure console keymap
|
||||
|
@ -95,19 +95,14 @@
|
|||
# Install firefox.
|
||||
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:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
chezmoi
|
||||
fish
|
||||
git
|
||||
python3
|
||||
neovim
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue