Advertisement
Guest User

Untitled

a guest
Feb 29th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. [clever@amd-nixos:~/nixpkgs]$ nix-repl -I nixos-config=/home/clever/nixpkgs/configuration.nix nixos/default.nix
  2. Welcome to Nix version 1.11.2. Type :? for help.
  3.  
  4. Loading ‘nixos/default.nix’...
  5. Added 6 variables.
  6.  
  7. nix-repl> config.users.users.isso
  8. { _module = { ... }; createHome = true; cryptHomeLuks = null; description = "Isso commenting server"; extraGroups = [ ... ]; group = "isso"; hashedPassword = null; home = "/var/lib/isso"; initialHashedPassword = null; initialPassword = null; isNormalUser = false; isSystemUser = false; name = "isso"; openssh = { ... }; password = null; passwordFile = null; shell = "/run/current-system/sw/bin/nologin"; subGidRanges = [ ... ]; subUidRanges = [ ... ]; uid = 231; useDefaultShell = false; }
  9.  
  10. nix-repl> config.users.users.isso.home
  11. "/var/lib/isso"
  12.  
  13. nix-repl> :q
  14.  
  15. [clever@amd-nixos:~/nixpkgs]$ cat configuration.nix
  16. { ... }:
  17.  
  18. {
  19. services.isso.enable = true;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement