Advertisement
Guest User

Untitled

a guest
Jun 12th, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.54 KB | None | 0 0
  1. # The Error
  2. cannot open connection to remote store 'daemon':
  3.  
  4. # configuration.nix
  5. { config, pkgs, ... }:
  6.  
  7.  
  8. {
  9. # Imported Configs
  10.   imports = [/home/demo/ziad.nix ]
  11. }
  12.  
  13. # ziad.nix
  14. { config, pkgs, ... }:
  15.  
  16. { imports = [ ./net.nix ./pkg.nix ];
  17.  
  18. }
  19.  
  20. # net.nix
  21. { config, pkgs, ...}:
  22.  
  23. {
  24. networking.hostName = "ziadNix";
  25. networking.firewall.enable = true;
  26. networking.firewall.allowPing = true;
  27. }
  28.  
  29. # pkg.nix
  30.  
  31. {config, pkgs, ...}:
  32. {
  33. environment.systemPackages = [
  34.         pkgs.emacs
  35.         pkgs.firefox
  36.         pkgs.vim
  37. ];
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement