Advertisement
Guest User

configuration.nix

a guest
Mar 30th, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. # Edit this configuration file to define what should be installed on
  2. # your system. Help is available in the configuration.nix(5) man page
  3. # and in the NixOS manual (accessible by running ‘nixos-help’).
  4.  
  5. { config, pkgs, ... }:
  6.  
  7. {
  8. imports =
  9. [ # Include the results of the hardware scan.
  10. ./hardware-configuration.nix
  11. ./bootloader.nix
  12. ./networking.nix
  13. ./virtualization.nix
  14. ./fonts.nix
  15. ./packages.nix
  16. ./programming.nix
  17. ./zsh.nix
  18. ./vim.nix
  19. ./tmux.nix
  20. ./git.nix
  21. ./users.nix
  22. ./security.nix
  23. ./services.nix
  24. ./terminal.nix
  25. ];
  26.  
  27. nixpkgs.config = {
  28. allowUnfree = true;
  29. firefox.enableAdobeFlash = true;
  30. pulseaudio = true;
  31. };
  32.  
  33. # Select internationalisation properties.
  34. i18n = {
  35. consoleFont = "Lat2-Terminus16";
  36. consoleKeyMap = "us";
  37. defaultLocale = "en_US.UTF-8";
  38. };
  39.  
  40. # Set your time zone.
  41. time.timeZone = "Europe/Copenhagen";
  42.  
  43. # The NixOS release to be compatible with for stateful data such as databases.
  44. system.stateVersion = "17.03";
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement