2017-10-15 16:27:35 +02:00
|
|
|
|
# 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, ... }:
|
|
|
|
|
|
2017-10-16 22:53:49 +02:00
|
|
|
|
{
|
2017-10-15 16:27:35 +02:00
|
|
|
|
imports =
|
2017-10-16 22:53:49 +02:00
|
|
|
|
[
|
2017-10-15 16:27:35 +02:00
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./local-configuration.nix
|
2017-10-16 22:53:49 +02:00
|
|
|
|
./packages.nix
|
2017-10-17 00:32:48 +02:00
|
|
|
|
./desktop.nix
|
2017-10-20 23:22:10 +02:00
|
|
|
|
./dotfiles.nix
|
2017-10-15 16:27:35 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# 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";
|
|
|
|
|
|
2017-10-21 00:33:39 +02:00
|
|
|
|
# Configure emacs:
|
|
|
|
|
# (actually, that's a lie, this only installs emacs!)
|
2017-10-15 16:27:35 +02:00
|
|
|
|
services.emacs.enable = true;
|
|
|
|
|
services.emacs.defaultEditor = true;
|
|
|
|
|
|
2017-10-21 00:33:39 +02:00
|
|
|
|
virtualisation = {
|
|
|
|
|
# Configure VirtualBox (needed for local NixOps testing):
|
|
|
|
|
virtualbox.host.enable = true;
|
2017-10-17 16:18:11 +02:00
|
|
|
|
|
2017-10-21 00:33:39 +02:00
|
|
|
|
# Configure Docker (with socket activation):
|
|
|
|
|
# Side note: ... why is this in virtualisation? ...
|
|
|
|
|
docker.enable = true;
|
|
|
|
|
docker.autoPrune.enable = true;
|
|
|
|
|
};
|
2017-10-17 16:18:11 +02:00
|
|
|
|
|
2017-10-21 00:33:39 +02:00
|
|
|
|
# Configure various other applications:
|
|
|
|
|
programs = {
|
|
|
|
|
java.enable = true;
|
|
|
|
|
fish.enable = true;
|
|
|
|
|
ssh.startAgent = true;
|
|
|
|
|
};
|
2017-10-15 16:27:35 +02:00
|
|
|
|
|
|
|
|
|
# Configure user account
|
|
|
|
|
users.defaultUserShell = pkgs.fish;
|
|
|
|
|
users.extraUsers.vincent = {
|
2017-10-18 00:58:03 +02:00
|
|
|
|
extraGroups = [ "wheel" "docker" ];
|
2017-10-15 16:27:35 +02:00
|
|
|
|
isNormalUser = true;
|
|
|
|
|
uid = 1000;
|
|
|
|
|
shell = pkgs.fish;
|
|
|
|
|
};
|
|
|
|
|
|
2017-10-21 00:33:39 +02:00
|
|
|
|
security.sudo = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraConfig = "wheel ALL=(ALL:ALL) SETENV: ALL";
|
|
|
|
|
};
|
2017-10-15 16:27:35 +02:00
|
|
|
|
|
|
|
|
|
# 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?
|
|
|
|
|
}
|