Skip to content

Instantly share code, notes, and snippets.

@ajmcmiddlin
Created June 28, 2017 22:43
Show Gist options
  • Save ajmcmiddlin/4d17248baa2ba20320c741b9596c1725 to your computer and use it in GitHub Desktop.
Save ajmcmiddlin/4d17248baa2ba20320c741b9596c1725 to your computer and use it in GitHub Desktop.
# 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
];
# VirtualBox stuff
virtualisation.virtualbox.guest.enable = true;
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
# boot.loader.grub.efiSupport = true;
# boot.loader.grub.efiInstallAsRemovable = true;
# boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Define on which hard drive you want to install Grub.
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
boot.initrd.checkJournalingFS = false;
networking.hostName = "nixos-vm"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Select internationalisation properties.
# i18n = {
# consoleFont = "Lat2-Terminus16";
# consoleKeyMap = "us";
# defaultLocale = "en_US.UTF-8";
# };
# Set your time zone.
time.timeZone = "Australia/Brisbane";
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = with pkgs; [
cabal2nix
cabal-install
chromium
dmenu
emacs
ghc
git
gnumake
haskellPackages.stylish-haskell
haskellPackages.taffybar
htop
keepassx2
libreoffice
nix-prefetch-git
owncloud-client
rxvt_unicode-with-plugins
silver-searcher
upower
#st
wget
which
];
# List services that you want to enable:
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Enable upower service - used by taffybar's battery widget
services.upower.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# Enable CUPS to print documents.
# services.printing.enable = true;
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "us";
desktopManager.default = "none";
desktopManager.xterm.enable = false;
displayManager.lightdm.enable = true;
xkbOptions = "ctrl:nocaps";
windowManager.default = "xmonad";
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
extraPackages = haskellPackages : [haskellPackages.taffybar];
};
};
# services.xserver.xkbOptions = "eurosign:e";
# Enable the KDE Desktop Environment.
# services.xserver.displayManager.sddm.enable = true;
# services.xserver.desktopManager.plasma5.enable = true;
# Define a user account. Don't forget to set a password with ‘passwd’.
users.extraUsers.andrew = {
createHome = true;
extraGroups = ["wheel"];
group = "users";
home = "/home/andrew";
isNormalUser = true;
uid = 1000;
};
# The NixOS release to be compatible with for stateful data such as databases.
system.stateVersion = "17.03";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment