Advertisement
Guest User

Untitled

a guest
Dec 14th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.67 KB | None | 0 0
  1. Mount output:
  2. mount
  3. devtmpfs on /dev type devtmpfs (rw,nosuid,size=388432k,nr_inodes=969945,mode=755)
  4. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=3,mode=620,ptmxmode=000)
  5. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,size=3884288k)
  6. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  7. tmpfs on /run type tmpfs (rw,nodev,size=1942144k,mode=755)
  8. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  9. tmpfs on / type tmpfs (rw,relatime,mode=755)
  10. /dev/sdb1 on /iso type iso9660 (ro,relatime)
  11. /dev/loop0 on /nix/.ro-store type squashfs (ro,relatime)
  12. tmpfs on /nix/.rw-store type tmpfs (rw,relatime,mode=755)
  13. unionfs on /nix/store type fuse.unionfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  14. unionfs on /nix/store type fuse.unionfs (ro,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  15. ramfs on /run/keys type ramfs (rw,relatime)
  16. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  17. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  18. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/run/current-system/systemd/lib/systemd/systemd-cgroups-agent,name=systemd)
  19. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
  20. cgroup on /sys/fs/cgroup/net_cls type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls)
  21. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
  22. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
  23. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
  24. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
  25. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
  26. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
  27. systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=29,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
  28. hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
  29. debugfs on /sys/kernel/debug type debugfs (rw,relatime)
  30. mqueue on /dev/mqueue type mqueue (rw,relatime)
  31. fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
  32. tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=776856k,mode=700)
  33. /dev/sda3 on /mnt type btrfs (rw,relatime,space_cache,subvolid=5,subvol=/)
  34. /dev/sda1 on /mnt/boot type ext2 (rw,relatime,errors=continue,user_xattr,acl)
  35.  
  36. configuration.nix:
  37. # Edit this configuration file to define what should be installed on
  38. # your system. Help is available in the configuration.nix(5) man page
  39. # and in the NixOS manual (accessible by running ‘nixos-help’).
  40.  
  41. { config, pkgs, ... }:
  42.  
  43. {
  44. imports =
  45. [ # Include the results of the hardware scan.
  46. ./hardware-configuration.nix
  47. ];
  48.  
  49. # Use the GRUB 2 boot loader.
  50. boot.loader.grub.enable = true;
  51. boot.loader.grub.version = 2;
  52. # boot.loader.grub.efiSupport = true;
  53. # boot.loader.grub.efiInstallAsRemovable = true;
  54. # boot.loader.efi.efiSysMountPoint = "/boot/efi";
  55. # Define on which hard drive you want to install Grub.
  56. boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
  57.  
  58. # networking.hostName = "nixos"; # Define your hostname.
  59. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
  60. networking.connman.enable = true;
  61.  
  62. # Select internationalisation properties.
  63. # i18n = {
  64. # consoleFont = "Lat2-Terminus16";
  65. # consoleKeyMap = "us";
  66. # defaultLocale = "en_US.UTF-8";
  67. # };
  68.  
  69. # Set your time zone.
  70. time.timeZone = "Pacific/Vancouver";
  71.  
  72. # List packages installed in system profile. To search by name, run:
  73. # $ nix-env -qaP | grep wget
  74. # environment.systemPackages = with pkgs; [
  75. # wget
  76. # ];
  77.  
  78. # List services that you want to enable:
  79.  
  80. # Enable the OpenSSH daemon.
  81. # services.openssh.enable = true;
  82.  
  83. # Enable CUPS to print documents.
  84. # services.printing.enable = true;
  85.  
  86. # Enable the X11 windowing system.
  87. services.xserver.enable = true;
  88. services.xserver.layout = "us";
  89. services.xserver.xkbOptions = "eurosign:e";
  90.  
  91. # Enable the KDE Desktop Environment.
  92. # services.xserver.displayManager.kdm.enable = true;
  93. # services.xserver.desktopManager.kde4.enable = true;
  94. services.xserver.displayManager.sddm.enable = true;
  95. services.xserver.desktopManager.enlightenment.enable = true;
  96.  
  97. # Define a user account. Don't forget to set a password with ‘passwd’.
  98. # users.extraUsers.guest = {
  99. # isNormalUser = true;
  100. # uid = 1000;
  101. # };
  102.  
  103. # The NixOS release to be compatible with for stateful data such as databases.
  104. system.stateVersion = "16.09";
  105.  
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement