67 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # 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 =
 | ||
|     [
 | ||
|     ./hardware-configuration.nix
 | ||
|     ./local-configuration.nix
 | ||
|     ./packages.nix
 | ||
|     ./desktop.nix
 | ||
|     ./dotfiles.nix
 | ||
|     ];
 | ||
| 
 | ||
|   # Use the systemd-boot EFI boot loader.
 | ||
|   boot.loader.systemd-boot.enable = true;
 | ||
|   boot.loader.efi.canTouchEfiVariables = true;
 | ||
|   hardware.pulseaudio.enable = true;
 | ||
|   time.timeZone = "Europe/Oslo";
 | ||
| 
 | ||
|   # Configure emacs:
 | ||
|   # (actually, that's a lie, this only installs emacs!)
 | ||
|   services.emacs.enable = true;
 | ||
|   services.emacs.defaultEditor = true;
 | ||
| 
 | ||
|   virtualisation = {
 | ||
|     # Configure VirtualBox (needed for local NixOps testing):
 | ||
|     virtualbox.host.enable = true;
 | ||
| 
 | ||
|     # Configure Docker (with socket activation):
 | ||
|     # Side note: ... why is this in virtualisation? ...
 | ||
|     docker.enable = true;
 | ||
|     docker.autoPrune.enable = true;
 | ||
|   };
 | ||
| 
 | ||
|   # Configure various other applications:
 | ||
|   programs = {
 | ||
|     java.enable = true;
 | ||
|     fish.enable = true;
 | ||
|     ssh.startAgent = true;
 | ||
|   };
 | ||
| 
 | ||
|   # Enable PostgreSQL for development
 | ||
|   services.postgresql.enable = true;
 | ||
| 
 | ||
|   # Configure user account
 | ||
|   users.defaultUserShell = pkgs.fish;
 | ||
|   users.extraUsers.vincent = {
 | ||
|     extraGroups = [ "wheel" "docker" ];
 | ||
|     isNormalUser = true;
 | ||
|     uid = 1000;
 | ||
|     shell = pkgs.fish;
 | ||
|   };
 | ||
| 
 | ||
|   security.sudo = {
 | ||
|     enable = true;
 | ||
|     extraConfig = "wheel ALL=(ALL:ALL) SETENV: ALL";
 | ||
|   };
 | ||
| 
 | ||
|   # This value determines the NixOS release with which your system is to be
 | ||
|   # compatible, in order to avoid breaking some software such as database
 | ||
|   # servers. You should change this only after NixOS release notes say you
 | ||
|   # should.
 | ||
|   system.stateVersion = "17.09"; # Did you read the comment?
 | ||
| }
 |