Last active
March 29, 2023 10:48
-
-
Save mi-skam/89d3d2c71b3129c415fd90e25273f6af to your computer and use it in GitHub Desktop.
nixos base configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
(fetchTarball "https://github.com/msteen/nixos-vscode-server/tarball/master") | |
]; | |
# Use the systemd-boot EFI boot loader. | |
boot.loader.systemd-boot.enable = true; | |
boot.loader.efi.canTouchEfiVariables = true; | |
networking.hostName = "nixos"; # Define your hostname. | |
# Pick only one of the below networking options. | |
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. | |
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. | |
# Set your time zone. | |
time.timeZone = "Europe/Berlin"; | |
# Configure network proxy if necessary | |
# networking.proxy.default = "http://user:password@proxy:port/"; | |
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; | |
# Select internationalisation properties. | |
# i18n.defaultLocale = "en_US.UTF-8"; | |
console = { | |
font = "Lat2-Terminus16"; | |
useXkbConfig = true; # use xkbOptions in tty. | |
}; | |
# Enable the X11 windowing system. | |
# services.xserver.enable = true; | |
# Configure keymap in X11 | |
services.xserver.layout = "de"; | |
services.xserver.xkbVariant = "neo"; | |
# Enable CUPS to print documents. | |
# services.printing.enable = true; | |
# Enable sound. | |
# sound.enable = true; | |
# hardware.pulseaudio.enable = true; | |
# Enable touchpad support (enabled default in most desktopManager). | |
# services.xserver.libinput.enable = true; | |
# Define a user account. Don't forget to set a password with ‘passwd’. | |
users.users.plumps = { | |
isNormalUser = true; | |
hashedPassword = "$6$n02p31MS0xf5QS2Y$FjVbIQtDAqdYPQXub4KRvswRGMJ1TsKH9KsJq4Kw2dYkdOhhP/BgGC5uPJ/VuX20wMSHJ16fnFTJl4n7HeGnW1"; | |
openssh.authorizedKeys.keys = [ | |
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD5C1ThA1A5FB+3WSkPT6zeMLf69PUgVk/1vwyPzMVwBPpTtwauWapkW3Lex2J587ThKXJZdtE2szMdjukgXpyUerzySVr6SlMZGiFc5+8cZYRlMEiImNoBQx93HOUUBZzGmWay5GVD0uZucgo+PcAUA1D7tQkufryxSHHrxUPvOciZejwzXRa9WtnhfMu3bhuJjmKX8/Sm0LaEBTlFw/FNXCxnACYmONDr5/oHUhEjRrgVUGH1eRbjo2swcKVdBAiGD+eYusFEK5dFPGFX3pv5+aPo134HFENub3XJUPo178wLtxx4I06CpSopMc+SOJvEUzV22zo3hC/Mhxo8Ir2Dx+UHR2lpt3UclyJj9aP3dtnpAp8g/N+7Dzh3VZ62AP+a5uY50rlPsAWNUUarQZ0zE0Vx36bkMrfF0/MSj1M6ErIz8ryubDFBDYvVH8fipIBO7d4bEwQtbrVkT6nqPuCYPxtrrzK6y4RPx2eMKoHX/Z4M6Ov1K9PQGYFiscNfghc= plumps@MBP-von-plumps" | |
]; | |
extraGroups = [ "wheel" "docker" ]; # Enable ‘sudo’ for the user. | |
packages = with pkgs; [ | |
docker-compose | |
git | |
htop | |
neofetch | |
]; | |
}; | |
programs.neovim = { | |
enable = true; | |
defaultEditor = true; | |
vimAlias = true; | |
viAlias = true; | |
}; | |
# List packages installed in system profile. To search, run: | |
# $ nix search wget | |
# environment.systemPackages = with pkgs; [ | |
# 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 | |
# started in user sessions. | |
# programs.mtr.enable = true; | |
# programs.gnupg.agent = { | |
# enable = true; | |
# enableSSHSupport = true; | |
# }; | |
# List services that you want to enable: | |
# Enable the OpenSSH daemon. | |
services.openssh.enable = true; | |
services.vscode-server.enable = true; | |
virtualisation.docker.enable = true; | |
# Open ports in the firewall. | |
# networking.firewall.allowedTCPPorts = [ ... ]; | |
# networking.firewall.allowedUDPPorts = [ ... ]; | |
# Or disable the firewall altogether. | |
networking.firewall.enable = false; | |
# Copy the NixOS configuration file and link it from the resulting system | |
# (/run/current-system/configuration.nix). This is useful in case you | |
# accidentally delete configuration.nix. | |
# system.copySystemConfiguration = true; | |
# This value determines the NixOS release from which the default | |
# settings for stateful data, like file locations and database versions | |
# on your system were taken. It’s perfectly fine and recommended to leave | |
# this value at the release version of the first install of this system. | |
# Before changing this value read the documentation for this option | |
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). | |
system.stateVersion = "23.05"; # Did you read the comment? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment